From 45a1782766f59b093b2930f5ac6fbc5b030f2693 Mon Sep 17 00:00:00 2001 From: 0xZach Date: Thu, 19 Dec 2024 23:09:19 +0800 Subject: [PATCH] feat: add task02 --- mover/destec/code/task02/Move.lock | 34 +++++++++++++++++ mover/destec/code/task02/Move.toml | 37 +++++++++++++++++++ mover/destec/code/task02/sources/my_coin.move | 32 ++++++++++++++++ .../code/task02/sources/my_faucet_coin.move | 36 ++++++++++++++++++ .../code/task02/tests/task02_tests.move | 18 +++++++++ 5 files changed, 157 insertions(+) create mode 100644 mover/destec/code/task02/Move.lock create mode 100644 mover/destec/code/task02/Move.toml create mode 100644 mover/destec/code/task02/sources/my_coin.move create mode 100644 mover/destec/code/task02/sources/my_faucet_coin.move create mode 100644 mover/destec/code/task02/tests/task02_tests.move diff --git a/mover/destec/code/task02/Move.lock b/mover/destec/code/task02/Move.lock new file mode 100644 index 000000000..f1f9133bc --- /dev/null +++ b/mover/destec/code/task02/Move.lock @@ -0,0 +1,34 @@ +# @generated by Move, please check-in and do not edit manually. + +[move] +version = 3 +manifest_digest = "0A866F1D5637E509089BEFC4F75CE48D785A4F910572D6966AE000F21B7D60AF" +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.39.3" +edition = "2024.beta" +flavor = "sui" + +[env] + +[env.testnet] +chain-id = "4c78adac" +original-published-id = "0x8c491d341950849050b61ffc988c4fbdbbf330381415d0ed0d1ba883ae524928" +latest-published-id = "0x8c491d341950849050b61ffc988c4fbdbbf330381415d0ed0d1ba883ae524928" +published-version = "1" diff --git a/mover/destec/code/task02/Move.toml b/mover/destec/code/task02/Move.toml new file mode 100644 index 000000000..4935aff02 --- /dev/null +++ b/mover/destec/code/task02/Move.toml @@ -0,0 +1,37 @@ +[package] +name = "task02" +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] +task02 = "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/destec/code/task02/sources/my_coin.move b/mover/destec/code/task02/sources/my_coin.move new file mode 100644 index 000000000..24d7ef4c8 --- /dev/null +++ b/mover/destec/code/task02/sources/my_coin.move @@ -0,0 +1,32 @@ +/* +/// Module: task2 +*/ +module task02::my_coin { + use sui::coin::{Self, TreasuryCap}; + use sui::url; + + public struct MY_COIN has drop {} + + fun init(witness: MY_COIN, ctx: &mut TxContext) { + let (treasury, metadata) = coin::create_currency( + witness, + 6, + b"MY_COIN", + b"my first coin", + b"My first coin on SUI by destec", + option::some(url::new_unsafe_from_bytes(b"https://docs-zh.sui-book.com/img/logo.svg")), ctx); + + transfer::public_freeze_object(metadata); + transfer::public_transfer(treasury, ctx.sender()) + } + + public fun mint( + treasury_cap: &mut TreasuryCap, + amount: u64, + recipient: address, + ctx: &mut TxContext, + ) { + let coin = coin::mint(treasury_cap, amount, ctx); + transfer::public_transfer(coin, recipient) + } +} \ No newline at end of file diff --git a/mover/destec/code/task02/sources/my_faucet_coin.move b/mover/destec/code/task02/sources/my_faucet_coin.move new file mode 100644 index 000000000..6db4e36ae --- /dev/null +++ b/mover/destec/code/task02/sources/my_faucet_coin.move @@ -0,0 +1,36 @@ +module task02::my_faucet_coin { + + use sui::coin::{Self, TreasuryCap, Coin}; + use sui::url; + + public struct MY_FAUCET_COIN has drop {} + + fun init(witness: MY_FAUCET_COIN, ctx: &mut TxContext) { + let (treasury, metadata) = coin::create_currency( + witness, + 6, + b"MY_FAUCET", + b"my faucet coin", + b"My second faucet coin on SUI by destec", + option::some(url::new_unsafe_from_bytes(b"https://docs-zh.sui-book.com/img/logo.svg")), ctx); + + transfer::public_freeze_object(metadata); + transfer::public_share_object(treasury) + } + + #[allow(lint(self_transfer))] + public fun mint( + treasury_cap: &mut TreasuryCap, + amount: u64, + ctx: &mut TxContext, + ) { + let coin = coin::mint(treasury_cap, amount, ctx); + let sender = tx_context::sender(ctx); + + transfer::public_transfer(coin, sender) + } + + public fun burn(treasury_cap: &mut TreasuryCap, coin: Coin) { + coin::burn(treasury_cap, coin); + } +} diff --git a/mover/destec/code/task02/tests/task02_tests.move b/mover/destec/code/task02/tests/task02_tests.move new file mode 100644 index 000000000..4574066cc --- /dev/null +++ b/mover/destec/code/task02/tests/task02_tests.move @@ -0,0 +1,18 @@ +/* +#[test_only] +module task02::task02_tests; +// uncomment this line to import the module +// use task02::task02; + +const ENotImplemented: u64 = 0; + +#[test] +fun test_task02() { + // pass +} + +#[test, expected_failure(abort_code = ::task02::task02_tests::ENotImplemented)] +fun test_task02_fail() { + abort ENotImplemented +} +*/