| 12345678910111213141516171819202122 |
- [package]
- name = "pyth-solana-receiver-cli"
- version = "0.2.0"
- edition = "2021"
- [dependencies]
- anyhow = "1.0.65"
- base64 = "0.13.0"
- shellexpand = "2.1.2"
- solana-sdk = { workspace = true }
- solana-client = { workspace = true }
- anchor-client = { workspace = true }
- clap = { version = "3.2.22", features = ["derive"] }
- pyth-solana-receiver = { path = "../programs/pyth-solana-receiver" }
- wormhole-solana = { git = "https://github.com/guibescos/wormhole", branch = "reisen/sdk-solana" } # Used for initializing the wormhole receiver
- pythnet-sdk = { path = "../../../pythnet/pythnet_sdk", version = "2.0.0" }
- wormhole-vaas-serde = { workspace = true }
- serde_wormhole = { workspace = true }
- hex = "0.4.3"
- borsh = "0.9.3" # Old version of borsh needed for wormhole-solana
- wormhole-core-bridge-solana = { workspace = true }
- pyth-solana-receiver-sdk = "0.6.1" # This is the highest version of pyth-solana-receiver-sdk that is compatible with the anchor-lang version used in the contract (0.28.0)
|