forked from 0xmetaschool/create-fungible-token-on-aptos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Move.toml
17 lines (15 loc) · 812 Bytes
/
Move.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = 'MyToken'
version = '1.0.0'
[dependencies]
AptosFramework = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-framework", rev = "testnet" }
AptosStdlib = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-stdlib", rev = "testnet" }
AptosToken = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-token", rev = "testnet" }
AptosTokenObjects = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-token-objects", rev = "testnet" }
[addresses]
aptos_asset = "0x211ff0b0181419fbc70fc7011bcef8bbb91aad80776a651b9b35f872fcd2be75"
std = "0x1"
aptos_std = "0x1"
aptos_framework = "0x1"
aptos_token = "0x3"
aptos_token_objects = "0x4"