From c5e70b94813c582e064fbbdcec2e96fd89890b2d Mon Sep 17 00:00:00 2001 From: aaron <616915054@qq.com> Date: Sat, 3 Aug 2024 18:15:05 +0800 Subject: [PATCH] done task_2 --- mover/AaronChengHao/code/readme.md | 8 ++-- .../code/task_2/faucet_coin/Move.lock | 34 ++++++++++++++ .../code/task_2/faucet_coin/Move.toml | 37 +++++++++++++++ .../faucet_coin/sources/faucet_coin.move | 46 +++++++++++++++++++ .../faucet_coin/tests/faucet_coin_tests.move | 19 ++++++++ .../code/task_2/my_coin/Move.lock | 34 ++++++++++++++ .../code/task_2/my_coin/Move.toml | 37 +++++++++++++++ .../code/task_2/my_coin/sources/my_coin.move | 37 +++++++++++++++ .../task_2/my_coin/tests/my_coin_tests.move | 19 ++++++++ 9 files changed, 266 insertions(+), 5 deletions(-) create mode 100644 mover/AaronChengHao/code/task_2/faucet_coin/Move.lock create mode 100644 mover/AaronChengHao/code/task_2/faucet_coin/Move.toml create mode 100644 mover/AaronChengHao/code/task_2/faucet_coin/sources/faucet_coin.move create mode 100644 mover/AaronChengHao/code/task_2/faucet_coin/tests/faucet_coin_tests.move create mode 100644 mover/AaronChengHao/code/task_2/my_coin/Move.lock create mode 100644 mover/AaronChengHao/code/task_2/my_coin/Move.toml create mode 100644 mover/AaronChengHao/code/task_2/my_coin/sources/my_coin.move create mode 100644 mover/AaronChengHao/code/task_2/my_coin/tests/my_coin_tests.move diff --git a/mover/AaronChengHao/code/readme.md b/mover/AaronChengHao/code/readme.md index b0d92f6df..b77aee642 100644 --- a/mover/AaronChengHao/code/readme.md +++ b/mover/AaronChengHao/code/readme.md @@ -19,11 +19,9 @@ - [] package id 在 scan上的查看截图:![Scan截图](./images/sui-transaction.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 :` 0x7261e9ac62d20f95613bd309702ddbf63817ed5902bb49cb10524365369344df` +- [x] Faucet package id : `0xfd8e86a98ed8d179b847be2c7e24ee66ae1ed9ad2944904f62e414693a78283a` +- [x] 转账 `My Coin` hash: `3BeoTm6w8u8EjGJ4gb1DqMwpuFMQHVkBYque4cWG7N22` ## 03 move NFT - [] nft package id : diff --git a/mover/AaronChengHao/code/task_2/faucet_coin/Move.lock b/mover/AaronChengHao/code/task_2/faucet_coin/Move.lock new file mode 100644 index 000000000..3d86ae5c5 --- /dev/null +++ b/mover/AaronChengHao/code/task_2/faucet_coin/Move.lock @@ -0,0 +1,34 @@ +# @generated by Move, please check-in and do not edit manually. + +[move] +version = 2 +manifest_digest = "F8CFCF256E2F1BB7CD401C27799A09C40777C5C100F0DFA253E86DD7F0D4ED1B" +deps_digest = "F8BBB0CCB2491CA29A3DF03D6F92277A4F3574266507ACD77214D37ECA3F3082" +dependencies = [ + { name = "Sui" }, +] + +[[move.package]] +name = "MoveStdlib" +source = { git = "https://github.com/MystenLabs/sui.git", rev = "framework/testnet", subdir = "crates/sui-framework/packages/move-stdlib" } + +[[move.package]] +name = "Sui" +source = { git = "https://github.com/MystenLabs/sui.git", rev = "framework/testnet", subdir = "crates/sui-framework/packages/sui-framework" } + +dependencies = [ + { name = "MoveStdlib" }, +] + +[move.toolchain-version] +compiler-version = "1.30.1" +edition = "2024.beta" +flavor = "sui" + +[env] + +[env.mainnet] +chain-id = "35834a8a" +original-published-id = "0xfd8e86a98ed8d179b847be2c7e24ee66ae1ed9ad2944904f62e414693a78283a" +latest-published-id = "0xfd8e86a98ed8d179b847be2c7e24ee66ae1ed9ad2944904f62e414693a78283a" +published-version = "1" diff --git a/mover/AaronChengHao/code/task_2/faucet_coin/Move.toml b/mover/AaronChengHao/code/task_2/faucet_coin/Move.toml new file mode 100644 index 000000000..1b517a2be --- /dev/null +++ b/mover/AaronChengHao/code/task_2/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/AaronChengHao/code/task_2/faucet_coin/sources/faucet_coin.move b/mover/AaronChengHao/code/task_2/faucet_coin/sources/faucet_coin.move new file mode 100644 index 000000000..d2cfe02ef --- /dev/null +++ b/mover/AaronChengHao/code/task_2/faucet_coin/sources/faucet_coin.move @@ -0,0 +1,46 @@ +module faucet_coin::a_aaron_cheng_hao_coin { + use sui::coin::{Self,TreasuryCap}; + use sui::balance::{Self, Balance}; + + public struct A_AARON_CHENG_HAO_COIN has drop {} + public struct FaucetWallet has key { + id: UID, + coin: Balance + } + + fun init(waitness: A_AARON_CHENG_HAO_COIN, ctx: &mut sui::tx_context::TxContext) { + let (treasury_cap, meta) = coin::create_currency( + waitness, + 6, + b"A_AARON_CHENG_HAO_COIN", + b"A_AARON_CHENG_HAO_COIN", + b"I love A_AARON_CHENG_HAO_COIN. I love blockchains.", + option::none(), + ctx); + transfer::public_freeze_object(meta); + transfer::public_transfer(treasury_cap, tx_context::sender(ctx)); + let wallet = FaucetWallet { + id: object::new(ctx), + coin: balance::zero() + }; + transfer::share_object(wallet) + } + + public entry fun mint( + treasury_cap: &mut TreasuryCap, + wallet: &mut FaucetWallet, + amount: u64, + ctx: &mut TxContext + ) { + let coin1 = coin::mint(treasury_cap, amount, ctx); + balance::join(&mut wallet.coin, coin::into_balance(coin1)); + } + + public entry fun faucet( + wallet: &mut FaucetWallet, + ctx: &mut TxContext, + ) { + let coin2 = coin::take(&mut wallet.coin, 10000, ctx); + transfer::public_transfer(coin2, tx_context::sender(ctx)); + } +} diff --git a/mover/AaronChengHao/code/task_2/faucet_coin/tests/faucet_coin_tests.move b/mover/AaronChengHao/code/task_2/faucet_coin/tests/faucet_coin_tests.move new file mode 100644 index 000000000..88a42bf8e --- /dev/null +++ b/mover/AaronChengHao/code/task_2/faucet_coin/tests/faucet_coin_tests.move @@ -0,0 +1,19 @@ +/* +#[test_only] +module faucet_coin::faucet_coin_tests { + // uncomment this line to import the module + // use faucet_coin::faucet_coin; + + const ENotImplemented: u64 = 0; + + #[test] + fun test_faucet_coin() { + // pass + } + + #[test, expected_failure(abort_code = ::faucet_coin::faucet_coin_tests::ENotImplemented)] + fun test_faucet_coin_fail() { + abort ENotImplemented + } +} +*/ diff --git a/mover/AaronChengHao/code/task_2/my_coin/Move.lock b/mover/AaronChengHao/code/task_2/my_coin/Move.lock new file mode 100644 index 000000000..088b26b75 --- /dev/null +++ b/mover/AaronChengHao/code/task_2/my_coin/Move.lock @@ -0,0 +1,34 @@ +# @generated by Move, please check-in and do not edit manually. + +[move] +version = 2 +manifest_digest = "0A4652D38CF3C3FDB79EC6C1C98FCFF7B2E933E12B84A1DA267DB28F66AFECE3" +deps_digest = "F8BBB0CCB2491CA29A3DF03D6F92277A4F3574266507ACD77214D37ECA3F3082" +dependencies = [ + { name = "Sui" }, +] + +[[move.package]] +name = "MoveStdlib" +source = { git = "https://github.com/MystenLabs/sui.git", rev = "framework/testnet", subdir = "crates/sui-framework/packages/move-stdlib" } + +[[move.package]] +name = "Sui" +source = { git = "https://github.com/MystenLabs/sui.git", rev = "framework/testnet", subdir = "crates/sui-framework/packages/sui-framework" } + +dependencies = [ + { name = "MoveStdlib" }, +] + +[move.toolchain-version] +compiler-version = "1.30.1" +edition = "2024.beta" +flavor = "sui" + +[env] + +[env.mainnet] +chain-id = "35834a8a" +original-published-id = "0x7261e9ac62d20f95613bd309702ddbf63817ed5902bb49cb10524365369344df" +latest-published-id = "0x7261e9ac62d20f95613bd309702ddbf63817ed5902bb49cb10524365369344df" +published-version = "1" diff --git a/mover/AaronChengHao/code/task_2/my_coin/Move.toml b/mover/AaronChengHao/code/task_2/my_coin/Move.toml new file mode 100644 index 000000000..b9ca003f8 --- /dev/null +++ b/mover/AaronChengHao/code/task_2/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/AaronChengHao/code/task_2/my_coin/sources/my_coin.move b/mover/AaronChengHao/code/task_2/my_coin/sources/my_coin.move new file mode 100644 index 000000000..10bf8b600 --- /dev/null +++ b/mover/AaronChengHao/code/task_2/my_coin/sources/my_coin.move @@ -0,0 +1,37 @@ +module my_coin::a_aaron_cheng_hao { + use std::option; + use sui::coin::{Self, Coin, TreasuryCap}; + use sui::transfer; + use sui::tx_context::{Self, TxContext}; + use sui::url::{Url,Self}; + + public struct A_AARON_CHENG_HAO has drop {} + + public fun init(witness: A_AARON_CHENG_HAO, ctx: &mut TxContext) { + let (treasury_cap, metadata) = coin::create_currency( + witness, + 6, + b"A_AARON_CHENG_HAO", + b"A_AARON_CHENG_HAO", + b"I love A_AARON_CHENG_HAO. I love blockchains.", + option::none(), + ctx + ); + + transfer::public_freeze_object(metadata); + transfer::public_transfer(treasury_cap, tx_context::sender(ctx)); + } + + public fun mint( + treasury_cap: &mut TreasuryCap, + amount: u64, + recipient: address, + ctx: &mut TxContext + ) { + coin::mint_and_transfer(treasury_cap, amount, recipient, ctx); + } + + public fun burn(treasury_cap: &mut TreasuryCap, coin: Coin) { + coin::burn(treasury_cap, coin); + } +} diff --git a/mover/AaronChengHao/code/task_2/my_coin/tests/my_coin_tests.move b/mover/AaronChengHao/code/task_2/my_coin/tests/my_coin_tests.move new file mode 100644 index 000000000..4be556acf --- /dev/null +++ b/mover/AaronChengHao/code/task_2/my_coin/tests/my_coin_tests.move @@ -0,0 +1,19 @@ +/* +#[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 + } +} +*/