Skip to content

Commit

Permalink
Merge pull request #1942 from flatflax/main
Browse files Browse the repository at this point in the history
task2
  • Loading branch information
Sifotd authored Nov 20, 2024
2 parents 8c8473a + 45a9257 commit 06f4cbd
Show file tree
Hide file tree
Showing 10 changed files with 203 additions and 5 deletions.
Binary file removed mover/flatflax/co-learn-2411/video_week01.png
Binary file not shown.
37 changes: 37 additions & 0 deletions mover/flatflax/code/task2/faucet_coin/Move.toml
Original file line number Diff line number Diff line change
@@ -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 ([email protected])", "John Snow ([email protected])"]

[dependencies]
Sui = { git = "https://gitee.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"

34 changes: 34 additions & 0 deletions mover/flatflax/code/task2/faucet_coin/sources/faucet_coin.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/// Module: task2
module faucet_coin::faucet_coin {


use sui::coin::{Self, Coin, TreasuryCap};


public struct FAUCET_COIN has drop {}

fun init(witness: FAUCET_COIN, ctx: &mut TxContext) {
let (treasury_cap, metadata) = coin::create_currency<FAUCET_COIN>(witness, 2, b"faucet flatflax coin", b"faucet flatflax coin", b"",
option::none(), ctx);
transfer::public_freeze_object(metadata);
transfer::public_share_object(treasury_cap)
}


public fun mint(
treasury_cap: &mut TreasuryCap<FAUCET_COIN>,
amount: u64,
recipient: address,
ctx: &mut TxContext,
) {
coin::mint_and_transfer(treasury_cap, amount, recipient, ctx);
}



public fun burn(treasury_cap: &mut TreasuryCap<FAUCET_COIN>, coin: Coin<FAUCET_COIN>) {
coin::burn(treasury_cap, coin);
}


}
18 changes: 18 additions & 0 deletions mover/flatflax/code/task2/faucet_coin/tests/faucet_coin_tests.move
Original file line number Diff line number Diff line change
@@ -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
}
*/
37 changes: 37 additions & 0 deletions mover/flatflax/code/task2/mycoin/Move.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[package]
name = "mycoin"
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://gitee.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]
mycoin = "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"

33 changes: 33 additions & 0 deletions mover/flatflax/code/task2/mycoin/sources/mycoin.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/// Module: task2
module mycoin::my_coin {


use sui::coin::{Self, Coin, TreasuryCap};


public struct MY_COIN has drop {}

fun init(witness: MY_COIN, ctx: &mut TxContext) {
let (treasury_cap, metadata) = coin::create_currency<MY_COIN>(witness, 2, b"my flatflax coin", b"my flatflax coin", b"",
option::none(), ctx);
transfer::public_freeze_object(metadata);
transfer::public_transfer(treasury_cap, tx_context::sender(ctx))
}


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)
}

public fun burn(treasury_cap: &mut TreasuryCap<MY_COIN>, coin: Coin<MY_COIN>) {
coin::burn(treasury_cap, coin);
}


}
18 changes: 18 additions & 0 deletions mover/flatflax/code/task2/mycoin/tests/mycoin_tests.move
Original file line number Diff line number Diff line change
@@ -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
}
*/
6 changes: 6 additions & 0 deletions mover/flatflax/notes/task1.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,10 @@ sui client switch --address <address>
git config --global http.version HTTP/1.1
git push
git config --global --unset http.version
```

* publish

```
sui client publish --gas-budget <GAS_BUDGET> --skip-dependency-verification
```
15 changes: 15 additions & 0 deletions mover/flatflax/notes/task2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
* mint_and_transfer

[doc](https://docs.sui.io/references/framework/sui-framework/coin#0x2_coin_mint_and_transfer)
```
sui client call --package 0x2 --module coin --function mint_and_transfer --type-args 0xbfb4db281a9519bc902e519d9a5fe2cec8a7be41ce68bdf2e8cce63bbaeaf4df::faucet_coin::FAUCET_COIN --args <TreasuryCap> <amount> <address>
public entry fun mint_and_transfer<T>(
c: &mut TreasuryCap<T>,
amount: u64,
recipient: address,
ctx: &mut TxContext,
) {
transfer::public_transfer(mint(c, amount, ctx), recipient)
}
```
10 changes: 5 additions & 5 deletions mover/flatflax/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
- [] package id 在 scan上的查看截图:![Scan截图](./images/l.png)

## 02 move coin
- [] My Coin package id :
- [] Faucet package id :
- [] 转账 `My Coin` hash:
- [] `Faucet Coin` address1 mint hash:
- [] `Faucet Coin` address2 mint hash:
- [] My Coin package id : 0xea5e2369e8d9d502f4aca15d2c72ce4235610381d4a6238e2800ed617a5c28c1
- [] Faucet package id : 0xbfb4db281a9519bc902e519d9a5fe2cec8a7be41ce68bdf2e8cce63bbaeaf4df
- [] 转账 `My Coin` hash: 6PoWjtNCMU3qYkEuqQefSLJMT5KHXRBwQPgRESQAtBcW
- [] `Faucet Coin` address1 mint hash: E1trg5YyZcTpLAM8u6bMkmn7xQxbRapkFF4nckqS31k
- [] `Faucet Coin` address2 mint hash: Cgmd5mbH1Q99WPLGtRUCvGi2zjDs1RytSGR4U625vwkQ

## 03 move NFT
- [] nft package id :
Expand Down

0 comments on commit 06f4cbd

Please sign in to comment.