Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions target_chains/aptos/contracts/Move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ version = "0.0.1"
upgrade_policy = "compatible"

[dependencies]
# The AptosFramework / MoveStdlib / AptosStdlib / AptosToken revisions below
# are pinned to match the version of `aptos-core` that the on-chain Wormhole
# package (pinned just under here) was compiled and deployed against. Bumping
# them in isolation will produce bytecode that no longer links against the
# deployed Wormhole package, so do not update either pin without coordinating a
# matching Wormhole upgrade on every network we ship to.
AptosFramework = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-framework/", rev = "6f83bc6d02207298b2dee91133d75538789bf582" }
MoveStdlib = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/move-stdlib/", rev = "6f83bc6d02207298b2dee91133d75538789bf582" }
AptosStdlib = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-stdlib/", rev = "6f83bc6d02207298b2dee91133d75538789bf582" }
Expand Down