From 62d0d50bc5714e2f12279d8927fb7a12b321f05a Mon Sep 17 00:00:00 2001 From: chenlong Date: Mon, 18 Nov 2024 18:25:49 +0800 Subject: [PATCH] task2 --- .../code/task2/faucet_coin/Move.lock | 34 +++++++++++++ .../code/task2/faucet_coin/Move.toml | 37 ++++++++++++++ .../faucet_coin/sources/faucet_coin.move | 50 +++++++++++++++++++ .../faucet_coin/tests/faucet_coin_tests.move | 18 +++++++ .../chenlong1993/code/task2/mycoin/Move.lock | 34 +++++++++++++ .../chenlong1993/code/task2/mycoin/Move.toml | 37 ++++++++++++++ .../code/task2/mycoin/sources/my_coin.move | 37 ++++++++++++++ .../code/task2/mycoin/tests/mycoin_tests.move | 18 +++++++ 8 files changed, 265 insertions(+) create mode 100644 mover/chenlong1993/code/task2/faucet_coin/Move.lock create mode 100644 mover/chenlong1993/code/task2/faucet_coin/Move.toml create mode 100644 mover/chenlong1993/code/task2/faucet_coin/sources/faucet_coin.move create mode 100644 mover/chenlong1993/code/task2/faucet_coin/tests/faucet_coin_tests.move create mode 100644 mover/chenlong1993/code/task2/mycoin/Move.lock create mode 100644 mover/chenlong1993/code/task2/mycoin/Move.toml create mode 100644 mover/chenlong1993/code/task2/mycoin/sources/my_coin.move create mode 100644 mover/chenlong1993/code/task2/mycoin/tests/mycoin_tests.move diff --git a/mover/chenlong1993/code/task2/faucet_coin/Move.lock b/mover/chenlong1993/code/task2/faucet_coin/Move.lock new file mode 100644 index 000000000..079fa5a1f --- /dev/null +++ b/mover/chenlong1993/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.37.3" +edition = "2024.beta" +flavor = "sui" + +[env] + +[env.mainnet] +chain-id = "35834a8a" +original-published-id = "0x4827741468f39c7e9624aafb4fa67bb921a2adee56262c1cfe403958235c15aa" +latest-published-id = "0x4827741468f39c7e9624aafb4fa67bb921a2adee56262c1cfe403958235c15aa" +published-version = "1" diff --git a/mover/chenlong1993/code/task2/faucet_coin/Move.toml b/mover/chenlong1993/code/task2/faucet_coin/Move.toml new file mode 100644 index 000000000..1b517a2be --- /dev/null +++ b/mover/chenlong1993/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/chenlong1993/code/task2/faucet_coin/sources/faucet_coin.move b/mover/chenlong1993/code/task2/faucet_coin/sources/faucet_coin.move new file mode 100644 index 000000000..7c0c3798d --- /dev/null +++ b/mover/chenlong1993/code/task2/faucet_coin/sources/faucet_coin.move @@ -0,0 +1,50 @@ +/* +/// Module: faucet_coin +module faucet_coin::faucet_coin; +*/ +module faucet_coin::faucet_coin { + use sui::coin::{Self, Coin, TreasuryCap}; + use sui::url::{Self, Url}; + + public struct FAUCET_COIN has drop {} + + fun init( + witness: FAUCET_COIN, + ctx: &mut TxContext + ) { + let (treasury_cap, metadata) = coin::create_currency( + witness, + 9, + b"CRF", + b"FAUCET_COIN", + b"ChainRex Faucet Coin", + option::some( + url::new_unsafe_from_bytes( + b"https://avatars.githubusercontent.com/u/76983479" + ) + ), + 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 fun burn( + treasury_cap: &mut TreasuryCap, + coin: Coin + ) { + coin::burn(treasury_cap, coin); + + } +} + + diff --git a/mover/chenlong1993/code/task2/faucet_coin/tests/faucet_coin_tests.move b/mover/chenlong1993/code/task2/faucet_coin/tests/faucet_coin_tests.move new file mode 100644 index 000000000..74b01751a --- /dev/null +++ b/mover/chenlong1993/code/task2/faucet_coin/tests/faucet_coin_tests.move @@ -0,0 +1,18 @@ +/* +#[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/chenlong1993/code/task2/mycoin/Move.lock b/mover/chenlong1993/code/task2/mycoin/Move.lock new file mode 100644 index 000000000..2d30165df --- /dev/null +++ b/mover/chenlong1993/code/task2/mycoin/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.37.3" +edition = "2024.beta" +flavor = "sui" + +[env] + +[env.mainnet] +chain-id = "35834a8a" +original-published-id = "0xcc190e0be1376b8700c5e1b4b8f95e2b9eb3932bb007b1adfb2bb4c22c3579a4" +latest-published-id = "0xcc190e0be1376b8700c5e1b4b8f95e2b9eb3932bb007b1adfb2bb4c22c3579a4" +published-version = "1" diff --git a/mover/chenlong1993/code/task2/mycoin/Move.toml b/mover/chenlong1993/code/task2/mycoin/Move.toml new file mode 100644 index 000000000..b9ca003f8 --- /dev/null +++ b/mover/chenlong1993/code/task2/mycoin/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/chenlong1993/code/task2/mycoin/sources/my_coin.move b/mover/chenlong1993/code/task2/mycoin/sources/my_coin.move new file mode 100644 index 000000000..45207b02c --- /dev/null +++ b/mover/chenlong1993/code/task2/mycoin/sources/my_coin.move @@ -0,0 +1,37 @@ +/* +/// Module: mycoin +module mycoin::mycoin; +*/ +module my_coin::my_coin { + use sui::coin::{Self, Coin, TreasuryCap}; + use sui::url::{Self, Url}; + + public struct MY_COIN has drop {} + + fun init(witness: MY_COIN, ctx: &mut TxContext) { + let (treasury_cap, metadata) = coin::create_currency( + witness, + 9, + b"MY", + b"MY_COIN", + b"My foirst Coin", + option::some(url::new_unsafe_from_bytes(b"https://avatars.githubusercontent.com/u/76983482")), + 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 fun burn(treasury_cap: &mut TreasuryCap, coin: Coin) { + coin::burn(treasury_cap, coin); + } +} \ No newline at end of file diff --git a/mover/chenlong1993/code/task2/mycoin/tests/mycoin_tests.move b/mover/chenlong1993/code/task2/mycoin/tests/mycoin_tests.move new file mode 100644 index 000000000..d12b2353d --- /dev/null +++ b/mover/chenlong1993/code/task2/mycoin/tests/mycoin_tests.move @@ -0,0 +1,18 @@ +/* +#[test_only] +module mycoin::mycoin_tests; +// uncomment this line to import the module +// use mycoin::mycoin; + +const ENotImplemented: u64 = 0; + +#[test] +fun test_mycoin() { + // pass +} + +#[test, expected_failure(abort_code = ::mycoin::mycoin_tests::ENotImplemented)] +fun test_mycoin_fail() { + abort ENotImplemented +} +*/