Move.toml 1.4 KB

12345678910111213141516171819202122232425
  1. [package]
  2. name = "Pyth"
  3. version = "0.0.1"
  4. upgrade_policy = "compatible"
  5. [dependencies]
  6. # TODO: pin versions before mainnet release
  7. AptosFramework = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-framework/", rev = "main" }
  8. MoveStdlib = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/move-stdlib/", rev = "main" }
  9. AptosStdlib = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-stdlib/", rev = "main" }
  10. AptosToken = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-token/", rev = "main" }
  11. Wormhole = { git = "https://github.com/wormhole-foundation/wormhole.git", subdir = "aptos/wormhole", rev = "aptos/integration" }
  12. Deployer = { git = "https://github.com/wormhole-foundation/wormhole.git", subdir = "aptos/deployer", rev = "aptos/integration" }
  13. [addresses]
  14. pyth = "_"
  15. deployer = "_"
  16. wormhole = "_"
  17. [dev-addresses]
  18. # Note that these are localnet addresses, for use in testing. The contracts are deployed to the real networks at the
  19. # addresses documented at https://docs.pyth.network/consume-data/aptos#addresses
  20. pyth = "0x377f0d7c4aaeea8dd73a7a2c6bc817e59aea569e1f9ae0d2f4a80ea1be93bf01"
  21. deployer = "0x277fa055b6a73c42c0662d5236c65c864ccbf2d4abd21f174a30c8b786eab84b"
  22. wormhole = "0xde0036a9600559e295d5f6802ef6f3f802f510366e0c23912b0655d972166017"