-
Notifications
You must be signed in to change notification settings - Fork 899
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dfa056e
commit dddc1b1
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
mover/fengfengxiong123/code/task2/mint_dao_faucet_testnet.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
sui client call \ | ||
--package 0x2 \ | ||
--module coin \ | ||
--function mint_and_transfer \ | ||
--type-args 0xdacf8888168bfa8fbccf2cee479eaec3e3668326a165437bb347e9f0111cf0fc::dao::DAO \ | ||
--args \ | ||
0x7fa2d0cb719e6c40db0426485b62f2025b03491e022501f775b03733c70696c4 \ | ||
10000000000 \ | ||
0xc5608b3f246c832b6a0908abf0c61a22e0703f2a571e65f8b202db7b67fb366d \ | ||
--gas-budget 100000000 | ||
|
||
sui client call \ | ||
--package 0x2 \ | ||
--module coin \ | ||
--function mint_and_transfer \ | ||
--type-args 0xdacf8888168bfa8fbccf2cee479eaec3e3668326a165437bb347e9f0111cf0fc::faucetcoin::FAUCETCOIN \ | ||
--args \ | ||
0x34d9d14bef45e3da5c7dec9000c573b421a058b173372ea20b53ebbbdfcf3de0 \ | ||
70000000000 \ | ||
0xc5608b3f246c832b6a0908abf0c61a22e0703f2a571e65f8b202db7b67fb366d \ | ||
--gas-budget 700000000 | ||
|
||
# dao id 0x421e8725b78903b324cb5982f0ad030d658f5e8e92d1737010f482d570e3929e | ||
# faucet id 0xd0d65c019e15821c72677a857277de3a18495f588a65e43312a4971bb37eba68 | ||
# 0x2::coin::TreasuryCap<0xf5832a67eabb78a0a021d807bba92de5d387334bda7ef6852a600fe9887446eb::faucetcoin::FAUCETCOIN> |
34 changes: 34 additions & 0 deletions
34
mover/fengfengxiong123/code/task2/my_coin/Move_testnet.lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# @generated by Move, please check-in and do not edit manually. | ||
|
||
[move] | ||
version = 3 | ||
manifest_digest = "38FA6D76635532E25C82A10BAEB3E861865131F2810F7F4FB5975D754CCBAA48" | ||
deps_digest = "F8BBB0CCB2491CA29A3DF03D6F92277A4F3574266507ACD77214D37ECA3F3082" | ||
dependencies = [ | ||
{ id = "Sui", name = "Sui" }, | ||
] | ||
|
||
[[move.package]] | ||
id = "MoveStdlib" | ||
source = { git = "https://github.com/MystenLabs/sui.git", rev = "framework/testnet", subdir = "crates\\sui-framework\\packages\\move-stdlib" } | ||
|
||
[[move.package]] | ||
id = "Sui" | ||
source = { git = "https://github.com/MystenLabs/sui.git", rev = "framework/testnet", subdir = "crates/sui-framework/packages/sui-framework" } | ||
|
||
dependencies = [ | ||
{ id = "MoveStdlib", name = "MoveStdlib" }, | ||
] | ||
|
||
[move.toolchain-version] | ||
compiler-version = "1.38.2" | ||
edition = "2024.beta" | ||
flavor = "sui" | ||
|
||
[env] | ||
|
||
[env.testnet] | ||
chain-id = "4c78adac" | ||
original-published-id = "0xdacf8888168bfa8fbccf2cee479eaec3e3668326a165437bb347e9f0111cf0fc" | ||
latest-published-id = "0xdacf8888168bfa8fbccf2cee479eaec3e3668326a165437bb347e9f0111cf0fc" | ||
published-version = "1" |