28 lines
1.3 KiB
TOML
28 lines
1.3 KiB
TOML
|
[package]
|
||
|
name = "TokenBridge"
|
||
|
version = "0.0.1"
|
||
|
|
||
|
#TODO: pin versions before mainnet release
|
||
|
[dependencies]
|
||
|
AptosFramework = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-framework/", rev = "main" }
|
||
|
MoveStdlib = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/move-stdlib/", rev = "main" }
|
||
|
AptosStdlib = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-stdlib/", rev = "main" }
|
||
|
AptosToken = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-token/", rev = "main" }
|
||
|
Wormhole = { local = "../wormhole/" }
|
||
|
Deployer = { local = "../deployer/" }
|
||
|
|
||
|
# only included in testing
|
||
|
[dev-dependencies]
|
||
|
WrappedCoin = { local = "../coin/" }
|
||
|
|
||
|
[dev-addresses]
|
||
|
# derived address from sha3_256(deployer | "token_bridge" | 0xFF) by running
|
||
|
# worm aptos derive-resource-account 0x277fa055b6a73c42c0662d5236c65c864ccbf2d4abd21f174a30c8b786eab84b token_bridge
|
||
|
token_bridge = "0x84a5f374d29fc77e370014dce4fd6a55b58ad608de8074b0be5571701724da31"
|
||
|
deployer = "0x277fa055b6a73c42c0662d5236c65c864ccbf2d4abd21f174a30c8b786eab84b"
|
||
|
wrapped_coin = "0xf4f53cc591e5190eddbc43940746e2b5deea6e0e1562b2bba765d488504842c7"
|
||
|
wormhole = "0xde0036a9600559e295d5f6802ef6f3f802f510366e0c23912b0655d972166017"
|
||
|
|
||
|
[addresses]
|
||
|
token_bridge = "_"
|