Skip to content

Commit

Permalink
feat: add task02
Browse files Browse the repository at this point in the history
  • Loading branch information
destec committed Dec 19, 2024
1 parent e24ff7c commit 45a1782
Show file tree
Hide file tree
Showing 5 changed files with 157 additions and 0 deletions.
34 changes: 34 additions & 0 deletions mover/destec/code/task02/Move.lock
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 = "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"
37 changes: 37 additions & 0 deletions mover/destec/code/task02/Move.toml
Original file line number Diff line number Diff line change
@@ -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 ([email protected])", "John Snow ([email protected])"]

[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"

32 changes: 32 additions & 0 deletions mover/destec/code/task02/sources/my_coin.move
Original file line number Diff line number Diff line change
@@ -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::Url>(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<MY_COIN>,
amount: u64,
recipient: address,
ctx: &mut TxContext,
) {
let coin = coin::mint(treasury_cap, amount, ctx);
transfer::public_transfer(coin, recipient)
}
}
36 changes: 36 additions & 0 deletions mover/destec/code/task02/sources/my_faucet_coin.move
Original file line number Diff line number Diff line change
@@ -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::Url>(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<MY_FAUCET_COIN>,
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<MY_FAUCET_COIN>, coin: Coin<MY_FAUCET_COIN>) {
coin::burn(treasury_cap, coin);
}
}
18 changes: 18 additions & 0 deletions mover/destec/code/task02/tests/task02_tests.move
Original file line number Diff line number Diff line change
@@ -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
}
*/

0 comments on commit 45a1782

Please sign in to comment.