diff --git a/mover/ddybhm/code/task2/faucet_coin/Move.lock b/mover/ddybhm/code/task2/faucet_coin/Move.lock new file mode 100644 index 000000000..0321c6954 --- /dev/null +++ b/mover/ddybhm/code/task2/faucet_coin/Move.lock @@ -0,0 +1,34 @@ +# @generated by Move, please check-in and do not edit manually. + +[move] +version = 3 +manifest_digest = "F8CFCF256E2F1BB7CD401C27799A09C40777C5C100F0DFA253E86DD7F0D4ED1B" +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.36.2" +edition = "2024.beta" +flavor = "sui" + +[env] + +[env.mainnet] +chain-id = "35834a8a" +original-published-id = "0xe942d2cd5d636c32851bd542340a9ca0ef08ae48306683aa7ed88e3169f46919" +latest-published-id = "0xe942d2cd5d636c32851bd542340a9ca0ef08ae48306683aa7ed88e3169f46919" +published-version = "1" diff --git a/mover/ddybhm/code/task2/faucet_coin/Move.toml b/mover/ddybhm/code/task2/faucet_coin/Move.toml new file mode 100644 index 000000000..1b517a2be --- /dev/null +++ b/mover/ddybhm/code/task2/faucet_coin/Move.toml @@ -0,0 +1,37 @@ +[package] +name = "faucet_coin" +edition = "2024.beta" # edition = "legacy" to use legacy (pre-2024) Move +# license = "" # e.g., "MIT", "GPL", "Apache 2.0" +# authors = ["..."] # e.g., ["Joe Smith (joesmith@noemail.com)", "John Snow (johnsnow@noemail.com)"] + +[dependencies] +Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" } + +# For remote import, use the `{ git = "...", subdir = "...", rev = "..." }`. +# Revision can be a branch, a tag, and a commit hash. +# MyRemotePackage = { git = "https://some.remote/host.git", subdir = "remote/path", rev = "main" } + +# For local dependencies use `local = path`. Path is relative to the package root +# Local = { local = "../path/to" } + +# To resolve a version conflict and force a specific version for dependency +# override use `override = true` +# Override = { local = "../conflicting/version", override = true } + +[addresses] +faucet_coin = "0x0" + +# Named addresses will be accessible in Move as `@name`. They're also exported: +# for example, `std = "0x1"` is exported by the Standard Library. +# alice = "0xA11CE" + +[dev-dependencies] +# The dev-dependencies section allows overriding dependencies for `--test` and +# `--dev` modes. You can introduce test-only dependencies here. +# Local = { local = "../path/to/dev-build" } + +[dev-addresses] +# The dev-addresses section allows overwriting named addresses for the `--test` +# and `--dev` modes. +# alice = "0xB0B" + diff --git a/mover/ddybhm/code/task2/faucet_coin/sources/faucet_coin.move b/mover/ddybhm/code/task2/faucet_coin/sources/faucet_coin.move new file mode 100644 index 000000000..cb63e71ee --- /dev/null +++ b/mover/ddybhm/code/task2/faucet_coin/sources/faucet_coin.move @@ -0,0 +1,31 @@ +module faucet_coin::faucet_coin { + use std::option; + use sui::coin::{Self, Coin, TreasuryCap}; + use sui::transfer; + use sui::tx_context::{Self, TxContext}; + + public struct FAUCET_COIN has drop {} + + fun init(witness: FAUCET_COIN, ctx: &mut TxContext) { + let (treasury_cap, metadata) = coin::create_currency( + witness, + 2, + b"FAUCET", + b"FAUCETCOIN", + b"This is FAUCET COIN", + option::none(), + ctx + ); + transfer::public_freeze_object(metadata); + transfer::public_share_object(treasury_cap); + + } + + public entry fun mint(treasury_cap: &mut TreasuryCap, amount: u64, recipient: address, ctx: &mut TxContext){ + coin::mint_and_transfer(treasury_cap, amount, recipient, ctx); + } + + public entry fun burn(treasury_cap: &mut TreasuryCap, coin: Coin) { + coin::burn(treasury_cap, coin); + } +} diff --git a/mover/ddybhm/code/task2/faucet_coin/tests/coinfacet_tests.move b/mover/ddybhm/code/task2/faucet_coin/tests/coinfacet_tests.move new file mode 100644 index 000000000..8459c5790 --- /dev/null +++ b/mover/ddybhm/code/task2/faucet_coin/tests/coinfacet_tests.move @@ -0,0 +1,18 @@ +/* +#[test_only] +module faucet_coin::coinfacet_tests; +// uncomment this line to import the module +// use faucet_coin::faucet_coin; + +const ENotImplemented: u64 = 0; + +#[test] +fun test_coinfacet() { + // pass +} + +#[test, expected_failure(abort_code = ::faucet_coin::coinfacet_tests::ENotImplemented)] +fun test_coinfacet_fail() { + abort ENotImplemented +} +*/ diff --git a/mover/ddybhm/code/task2/my_coin/Move.lock b/mover/ddybhm/code/task2/my_coin/Move.lock new file mode 100644 index 000000000..2097113ef --- /dev/null +++ b/mover/ddybhm/code/task2/my_coin/Move.lock @@ -0,0 +1,34 @@ +# @generated by Move, please check-in and do not edit manually. + +[move] +version = 3 +manifest_digest = "0A4652D38CF3C3FDB79EC6C1C98FCFF7B2E933E12B84A1DA267DB28F66AFECE3" +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.36.2" +edition = "2024.beta" +flavor = "sui" + +[env] + +[env.mainnet] +chain-id = "35834a8a" +original-published-id = "0x8bd76482295b430b7a679564c3a0802a63ea60441bc204f1f6b3bf69b8b20019" +latest-published-id = "0x8bd76482295b430b7a679564c3a0802a63ea60441bc204f1f6b3bf69b8b20019" +published-version = "1" diff --git a/mover/ddybhm/code/task2/my_coin/Move.toml b/mover/ddybhm/code/task2/my_coin/Move.toml new file mode 100644 index 000000000..b9ca003f8 --- /dev/null +++ b/mover/ddybhm/code/task2/my_coin/Move.toml @@ -0,0 +1,37 @@ +[package] +name = "my_coin" +edition = "2024.beta" # edition = "legacy" to use legacy (pre-2024) Move +# license = "" # e.g., "MIT", "GPL", "Apache 2.0" +# authors = ["..."] # e.g., ["Joe Smith (joesmith@noemail.com)", "John Snow (johnsnow@noemail.com)"] + +[dependencies] +Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" } + +# For remote import, use the `{ git = "...", subdir = "...", rev = "..." }`. +# Revision can be a branch, a tag, and a commit hash. +# MyRemotePackage = { git = "https://some.remote/host.git", subdir = "remote/path", rev = "main" } + +# For local dependencies use `local = path`. Path is relative to the package root +# Local = { local = "../path/to" } + +# To resolve a version conflict and force a specific version for dependency +# override use `override = true` +# Override = { local = "../conflicting/version", override = true } + +[addresses] +my_coin = "0x0" + +# Named addresses will be accessible in Move as `@name`. They're also exported: +# for example, `std = "0x1"` is exported by the Standard Library. +# alice = "0xA11CE" + +[dev-dependencies] +# The dev-dependencies section allows overriding dependencies for `--test` and +# `--dev` modes. You can introduce test-only dependencies here. +# Local = { local = "../path/to/dev-build" } + +[dev-addresses] +# The dev-addresses section allows overwriting named addresses for the `--test` +# and `--dev` modes. +# alice = "0xB0B" + diff --git a/mover/ddybhm/code/task2/my_coin/sources/my_coin.move b/mover/ddybhm/code/task2/my_coin/sources/my_coin.move new file mode 100644 index 000000000..bcda39643 --- /dev/null +++ b/mover/ddybhm/code/task2/my_coin/sources/my_coin.move @@ -0,0 +1,31 @@ +module my_coin::my_coin { + use std::option; + use sui::coin::{Self, Coin, TreasuryCap}; + use sui::transfer; + use sui::tx_context::{Self, TxContext}; + + public struct MY_COIN has drop {} + + fun init(witness: MY_COIN, ctx: &mut TxContext) { + let (treasury_cap, metadata) = coin::create_currency( + witness, + 2, + b"MY", + b"MYCOIN", + b"This is MY COIN", + option::none(), + ctx + ); + transfer::public_freeze_object(metadata); + transfer::public_transfer(treasury_cap, tx_context::sender(ctx)); + + } + + public entry fun mint(treasury_cap: &mut TreasuryCap, amount: u64, recipient: address, ctx: &mut TxContext){ + coin::mint_and_transfer(treasury_cap, amount, recipient, ctx); + } + + public entry fun burn(treasury_cap: &mut TreasuryCap, coin: Coin) { + coin::burn(treasury_cap, coin); + } +} \ No newline at end of file diff --git a/mover/ddybhm/code/task2/my_coin/tests/my_coin_tests.move b/mover/ddybhm/code/task2/my_coin/tests/my_coin_tests.move new file mode 100644 index 000000000..cd5b36060 --- /dev/null +++ b/mover/ddybhm/code/task2/my_coin/tests/my_coin_tests.move @@ -0,0 +1,18 @@ +/* +#[test_only] +module my_coin::my_coin_tests; +// uncomment this line to import the module +// use my_coin::my_coin; + +const ENotImplemented: u64 = 0; + +#[test] +fun test_my_coin() { + // pass +} + +#[test, expected_failure(abort_code = ::my_coin::my_coin_tests::ENotImplemented)] +fun test_my_coin_fail() { + abort ENotImplemented +} +*/ diff --git a/mover/ddybhm/readme.md b/mover/ddybhm/readme.md index 694f44881..12920718c 100644 --- a/mover/ddybhm/readme.md +++ b/mover/ddybhm/readme.md @@ -19,11 +19,11 @@ - [X] package id 在 scan上的查看截图:![Scan截图](./co-learn-2411/images/task1-2.png) ## 02 move coin -- [] My Coin package id : -- [] Faucet package id : -- [] 转账 `My Coin` hash: -- [] `Faucet Coin` address1 mint hash: -- [] `Faucet Coin` address2 mint hash: +- [X] My Coin package id : 0x8bd76482295b430b7a679564c3a0802a63ea60441bc204f1f6b3bf69b8b20019 +- [X] Faucet package id : 0xe942d2cd5d636c32851bd542340a9ca0ef08ae48306683aa7ed88e3169f46919 +- [X] 转账 `My Coin` hash:5mHeJWdAPYu9q4iMh8ojQLonvd63ho4yBPKUbVYnLzvU +- [X] `Faucet Coin` address1 mint hash:GpdYaycKgzRuzjuXpMsD9rsATaLRJYuCh9Fp7nkJrzDY +- [X] `Faucet Coin` address2 mint hash:9v7DbrCuujz9XrcatqzcZ8QuRkrWTVE77HD8rJcR7XaH ## 03 move NFT - [] nft package id :