Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

完成task 2 3 4 5 7 8 #2189

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions mover/chinazmc/code/task2/faucet_coin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build/*
34 changes: 34 additions & 0 deletions mover/chinazmc/code/task2/faucet_coin/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 = "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.39.3"
edition = "2024.beta"
flavor = "sui"

[env]

[env.mainnet]
chain-id = "35834a8a"
original-published-id = "0xad326729307cb3d4bd56c23d9620b6d60ef6c2d786c52206a5bd078e7d55ee88"
latest-published-id = "0xad326729307cb3d4bd56c23d9620b6d60ef6c2d786c52206a5bd078e7d55ee88"
published-version = "1"
37 changes: 37 additions & 0 deletions mover/chinazmc/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://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"

38 changes: 38 additions & 0 deletions mover/chinazmc/code/task2/faucet_coin/sources/faucet_coin.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
/// Module: faucet_coin
module faucet_coin::faucet_coin;
*/

// For Move coding conventions, see
// https://docs.sui.io/concepts/sui-move-concepts/conventions


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,6,b"zmc",b"zmc faucet coin",b"zmc faucet coin",option::none(),ctx);
transfer::public_freeze_object(metadata);
transfer::public_share_object(treasury_cap);
}

public entry fun mint(
treasury_cap: &mut TreasuryCap<FAUCET_COIN>,
amount:u64,
recipient:address,
ctx:&mut TxContext
){
let coin = coin::mint(treasury_cap,amount,ctx);
transfer::public_transfer(coin,recipient);
}
public entry fun burn(treasury_cap: &mut TreasuryCap<FAUCET_COIN>,coin:Coin<FAUCET_COIN>){
coin::burn(treasury_cap,coin);
}

}
//合约发布的txblock 73oZSV4usJDPRJdsnQwY7VBeRLVEhnXuSfcU6cjqymVF
//package id是 0xad326729307cb3d4bd56c23d9620b6d60ef6c2d786c52206a5bd078e7d55ee88
//share treasury_cap 的id是 0xb72e570db3e73b0bf6dda705e4ca7b689857a9cacdf33eaa0f91dad0cd76e42f
18 changes: 18 additions & 0 deletions mover/chinazmc/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
}
*/
1 change: 1 addition & 0 deletions mover/chinazmc/code/task2/mycoin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build/*
34 changes: 34 additions & 0 deletions mover/chinazmc/code/task2/mycoin/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 = "1393B3A86BC22B7FE61E23DBB2EF7BE1A330BF07AB402600F7E7CFF6E9DC82F9"
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.mainnet]
chain-id = "35834a8a"
original-published-id = "0xfd84f883d3f329c2f6000ee378a924ed0c116822918bf78f0d0acdd28d8408d5"
latest-published-id = "0xfd84f883d3f329c2f6000ee378a924ed0c116822918bf78f0d0acdd28d8408d5"
published-version = "1"
37 changes: 37 additions & 0 deletions mover/chinazmc/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://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]
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"

37 changes: 37 additions & 0 deletions mover/chinazmc/code/task2/mycoin/sources/mycoin.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/*
/// Module: mycoin
module mycoin::mycoin;
*/

// For Move coding conventions, see
// https://docs.sui.io/concepts/sui-move-concepts/conventions

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

public struct MYCOIN has drop{}
fun init(witness: MYCOIN,ctx: &mut TxContext){
let (treasury,metadata) = coin::create_currency<MYCOIN>(
witness,6,b"zmc",b"zmc coin",b"zmc coin",option::none(),ctx
);
transfer::public_freeze_object(metadata);
transfer::public_transfer(treasury,ctx.sender());
}

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

#[test_only]
public fun test_init(ctx: &mut TxContext) {
init(MYCOIN {}, ctx)
}
}
// txblock是 27naZXYAjq9FqUVXxTNj8yL4qPe49jw1Gk3wFvopvuvH
//treasury_cap id是 0x2ede94506b75d273b69251f628fbbcaefc8f7fff90aef8d282fc3b4f47184251
// package id 是 0xfd84f883d3f329c2f6000ee378a924ed0c116822918bf78f0d0acdd28d8408d5

//给地址:0x7b8e0864967427679b4e129f79dc332a885c6087ec9e187b53451a9006ee15f2 发代币的txblock CRqhsbGR63YFKjHuqWNC6ABtRcZjj6qNgzgQryTNBYKi
18 changes: 18 additions & 0 deletions mover/chinazmc/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
}
*/
1 change: 1 addition & 0 deletions mover/chinazmc/code/task3/zmc_nft/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build/*
122 changes: 122 additions & 0 deletions mover/chinazmc/code/task3/zmc_nft/Move.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
# @generated by Move, please check-in and do not edit manually.

[move]
version = 3
manifest_digest = "B08342E2189665E5F76AADCB332D81BA103AECB69A7138F6583A545C84A61457"
deps_digest = "3C4103934B1E040BB6B23F1D610B4EF9F2F1166A50A104EADCF77467C004C600"
dependencies = [
{ id = "NftProtocol", name = "NftProtocol" },
{ id = "Sui", name = "Sui" },
]

[[move.package]]
id = "Allowlist"
source = { git = "https://github.com/Origin-Byte/nft-protocol.git", rev = "main", subdir = "contracts\\allowlist" }

dependencies = [
{ id = "Permissions", name = "Permissions" },
{ id = "Sui", name = "Sui" },
]

[[move.package]]
id = "Authlist"
source = { git = "https://github.com/Origin-Byte/nft-protocol.git", rev = "main", subdir = "contracts\\authlist" }

dependencies = [
{ id = "Permissions", name = "Permissions" },
{ id = "Sui", name = "Sui" },
]

[[move.package]]
id = "Kiosk"
source = { git = "https://github.com/Origin-Byte/nft-protocol.git", rev = "main", subdir = "contracts\\kiosk" }

dependencies = [
{ id = "Permissions", name = "Permissions" },
{ id = "Request", name = "Request" },
{ id = "Sui", name = "Sui" },
]

[[move.package]]
id = "MoveStdlib"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "mainnet-v1.19.1", subdir = "crates\\sui-framework\\packages\\move-stdlib" }

[[move.package]]
id = "NftProtocol"
source = { git = "https://github.com/Origin-Byte/nft-protocol.git", rev = "main", subdir = "contracts/nft_protocol" }

dependencies = [
{ id = "Allowlist", name = "Allowlist" },
{ id = "Authlist", name = "Authlist" },
{ id = "Kiosk", name = "Kiosk" },
{ id = "Originmate", name = "Originmate" },
{ id = "Permissions", name = "Permissions" },
{ id = "Pseudorandom", name = "Pseudorandom" },
{ id = "Request", name = "Request" },
{ id = "Sui", name = "Sui" },
{ id = "Utils", name = "Utils" },
]

[[move.package]]
id = "Originmate"
source = { git = "https://github.com/Origin-Byte/nft-protocol.git", rev = "main", subdir = "contracts\\originmate" }

dependencies = [
{ id = "Sui", name = "Sui" },
]

[[move.package]]
id = "Permissions"
source = { git = "https://github.com/Origin-Byte/nft-protocol.git", rev = "main", subdir = "contracts\\permissions" }

dependencies = [
{ id = "Sui", name = "Sui" },
{ id = "Utils", name = "Utils" },
]

[[move.package]]
id = "Pseudorandom"
source = { git = "https://github.com/Origin-Byte/nft-protocol.git", rev = "main", subdir = "contracts\\pseudorandom" }

dependencies = [
{ id = "Sui", name = "Sui" },
]

[[move.package]]
id = "Request"
source = { git = "https://github.com/Origin-Byte/nft-protocol.git", rev = "main", subdir = "contracts\\request" }

dependencies = [
{ id = "Permissions", name = "Permissions" },
{ id = "Sui", name = "Sui" },
]

[[move.package]]
id = "Sui"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "mainnet-v1.19.1", subdir = "crates/sui-framework/packages/sui-framework" }

dependencies = [
{ id = "MoveStdlib", name = "MoveStdlib" },
]

[[move.package]]
id = "Utils"
source = { git = "https://github.com/Origin-Byte/nft-protocol.git", rev = "main", subdir = "contracts\\utils" }

dependencies = [
{ id = "Pseudorandom", name = "Pseudorandom" },
{ id = "Sui", name = "Sui" },
]

[move.toolchain-version]
compiler-version = "1.39.3"
edition = "2024.beta"
flavor = "sui"

[env]

[env.mainnet]
chain-id = "35834a8a"
original-published-id = "0x376f1deedcc6b9ee61094cccec535deb837eec74d01ec2760040614d395f5f15"
latest-published-id = "0x376f1deedcc6b9ee61094cccec535deb837eec74d01ec2760040614d395f5f15"
published-version = "1"
Loading
Loading