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

task2 #2175

Merged
merged 1 commit into from
Dec 18, 2024
Merged

task2 #2175

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
task2
btchack1 committed Dec 14, 2024
commit f40878c7749777f2fe4ac880ea59dc68530e393a
34 changes: 34 additions & 0 deletions mover/btchack1/code/task2/btchack1_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 = "ACDCE9DB86E9635E606DF3B14635C80EC4B17F9771187CF533CF688DE7DB88BA"
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.38.3"
edition = "2024.beta"
flavor = "sui"

[env]

[env.mainnet]
chain-id = "35834a8a"
original-published-id = "0x5dd15422a2e7bdf0885fa714bfd21bd9274da64cf7bae721f007357a666cdd0a"
latest-published-id = "0x5dd15422a2e7bdf0885fa714bfd21bd9274da64cf7bae721f007357a666cdd0a"
published-version = "1"
37 changes: 37 additions & 0 deletions mover/btchack1/code/task2/btchack1_coin/Move.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[package]
name = "btchack1_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]
btchack1_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"

14 changes: 14 additions & 0 deletions mover/btchack1/code/task2/btchack1_coin/sources/btchack1_coin.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module btchack1_coin::btchack1_coin {
use sui::coin::{Self, Coin, TreasuryCap};
use sui::url:: Url;

public struct BTCHACK1_COIN has drop {}

fun init(witness: BTCHACK1_COIN, ctx: &mut TxContext) {
let (treasury_cap, metadata) = coin::create_currency<BTCHACK1_COIN>(witness, 9, b"BTCHACK1", b"BTCHACK1_COIN", b"BTCHACK1 Coin", option::none(), ctx);
transfer::public_freeze_object(metadata);transfer::public_transfer(treasury_cap, tx_context::sender(ctx))
}
public entry fun mint(treasury_cap: &mut TreasuryCap<BTCHACK1_COIN>,amount: u64, recipient: address, ctx: &mut TxContext) {
coin::mint_and_transfer(treasury_cap, amount, recipient, ctx);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
#[test_only]
module btchack1_coin::btchack1_coin_tests;
// uncomment this line to import the module
// use btchack1_coin::btchack1_coin;
const ENotImplemented: u64 = 0;
#[test]
fun test_btchack1_coin() {
// pass
}
#[test, expected_failure(abort_code = ::btchack1_coin::btchack1_coin_tests::ENotImplemented)]
fun test_btchack1_coin_fail() {
abort ENotImplemented
}
*/
34 changes: 34 additions & 0 deletions mover/btchack1/code/task2/btchack1_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 = "C86D9FF54D43BF9AE5178CA7628E5CDE46380D39100A77D82EA94497A41C0977"
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.38.3"
edition = "2024.beta"
flavor = "sui"

[env]

[env.mainnet]
chain-id = "35834a8a"
original-published-id = "0x1e3d09e4141e59636d18f7b671a24cc7339ff85b779d687425a8b051f08c07af"
latest-published-id = "0x1e3d09e4141e59636d18f7b671a24cc7339ff85b779d687425a8b051f08c07af"
published-version = "1"
37 changes: 37 additions & 0 deletions mover/btchack1/code/task2/btchack1_faucet_coin/Move.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[package]
name = "btchack1_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]
btchack1_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"

Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module btchack1_faucet_coin::btchack1_faucet_coin {
use sui::coin::{Self, Coin, TreasuryCap};
use sui::url:: Url;

public struct BTCHACK1_FAUCET_COIN has drop {}

fun init(witness: BTCHACK1_FAUCET_COIN, ctx: &mut TxContext) {
let (treasury_cap, metadata) = coin::create_currency<BTCHACK1_FAUCET_COIN>(witness, 9, b"ANLIEN7", b"BTCHACK1_FAUCET_COIN", b"BTCHACK1 FAUCET COIN ", option::none(), ctx);
transfer::public_freeze_object(metadata);transfer::public_share_object(treasury_cap)
}
public entry fun mint(treasury_cap: &mut TreasuryCap<BTCHACK1_FAUCET_COIN>,amount: u64, recipient: address, ctx: &mut TxContext) {
coin::mint_and_transfer(treasury_cap, amount, recipient, ctx);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
#[test_only]
module btchack1_faucet_coin::btchack1_faucet_coin_tests;
// uncomment this line to import the module
// use btchack1_faucet_coin::btchack1_faucet_coin;
const ENotImplemented: u64 = 0;
#[test]
fun test_btchack1_faucet_coin() {
// pass
}
#[test, expected_failure(abort_code = ::btchack1_faucet_coin::btchack1_faucet_coin_tests::ENotImplemented)]
fun test_btchack1_faucet_coin_fail() {
abort ENotImplemented
}
*/
10 changes: 5 additions & 5 deletions mover/btchack1/readme.md
Original file line number Diff line number Diff line change
@@ -19,11 +19,11 @@
- [x] package id 在 scan上的查看截图:![Scan截图](./image/sui2.png)

## 02 move coin
- [] My Coin package id :
- [] Faucet package id :
- [] 转账 `My Coin` hash:
- [] `Faucet Coin` address1 mint hash:
- [] `Faucet Coin` address2 mint hash:
- [x] My Coin package id : 0x5dd15422a2e7bdf0885fa714bfd21bd9274da64cf7bae721f007357a666cdd0a
- [x] Faucet package id : 0x1e3d09e4141e59636d18f7b671a24cc7339ff85b779d687425a8b051f08c07af
- [x] 转账 `My Coin` 96MQHnk8rG7WwatyDFVd5sUhdTY8HRpLiETjgcjRcoc6
- [x] `Faucet Coin` address1 mint hash:FDHqbZ15616L6MMTBuvEGKLGEHTw2Lge2rkpits9qxVN
- [x] `Faucet Coin` address2 mint hash:4duGNUQQvxXBCvEw9QAGgrcpZGBxTV9BwyKnJ6jSXHFp

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