Skip to content

Commit

Permalink
Merge pull request #1265 from HlLming/main
Browse files Browse the repository at this point in the history
完成task 2 3
  • Loading branch information
uvd authored Jul 26, 2024
2 parents 25418ef + 0cb8d96 commit 939e1c8
Show file tree
Hide file tree
Showing 7 changed files with 199 additions and 9 deletions.
37 changes: 37 additions & 0 deletions mover/HlLming/code/task2/Move.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[package]
name = "task2"
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/mainnet" }

# 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]
task2 = "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/HlLming/code/task2/sources/coin.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
module task2::hllming_coin {
use sui::coin::{Self, Coin, TreasuryCap};
use sui::url::{Self,Url};

public struct HLLMING_COIN has drop {}

fun init(witness: HLLMING_COIN, ctx: &mut TxContext) {
let (treasury_cap, metadata) = coin::create_currency<HLLMING_COIN>(
witness,
9,
b"HLLMING_COIN",
b"HLLMING_COIN",
b"coin create by mqh",
option::some<Url>(url::new_unsafe_from_bytes(b"https://avatars.githubusercontent.com/u/169317797")),
ctx
);
transfer::public_freeze_object(metadata);
transfer::public_transfer(treasury_cap, tx_context::sender(ctx))
}
public entry fun mint(
treasury_cap: &mut TreasuryCap<HLLMING_COIN>,
amount: u64,
recipient: address,
ctx: &mut TxContext
) {
coin::mint_and_transfer(treasury_cap, amount, recipient, ctx);
}
public fun burn(
treasury_cap: &mut TreasuryCap<HLLMING_COIN>,
coin: Coin<HLLMING_COIN>
) {
coin::burn(treasury_cap, coin);
}
}
35 changes: 35 additions & 0 deletions mover/HlLming/code/task2/sources/faucet.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
module task2::hllming_faucet_coin {
use sui::coin::{Self, Coin, TreasuryCap};
use sui::url::{Self,Url};

public struct HLLMING_FAUCET_COIN has drop {}

#[allow(lint(share_owned))]
fun init(witness: HLLMING_FAUCET_COIN, ctx: &mut TxContext) {
let (treasury_cap, metadata) = coin::create_currency<HLLMING_FAUCET_COIN>(
witness,
9,
b"HLLMING_FAUCET",
b"HLLMING_FAUCET",
b"faucet coin defined by mqh, everyone can access and mutate",
option::some<Url>(url::new_unsafe_from_bytes(b"https://avatars.githubusercontent.com/u/169317797")),
ctx
);
transfer::public_freeze_object(metadata);
transfer::public_share_object(treasury_cap)
}
public entry fun mint(
treasury_cap: &mut TreasuryCap<HLLMING_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<HLLMING_FAUCET_COIN>,
coin: Coin<HLLMING_FAUCET_COIN>
) {
coin::burn(treasury_cap, coin);
}
}
37 changes: 37 additions & 0 deletions mover/HlLming/code/task3/Move.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[package]
name = "task3"
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/mainnet" }

# 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]
task3 = "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"

47 changes: 47 additions & 0 deletions mover/HlLming/code/task3/sources/task3.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
module task3::hllming_nft {
use std::ascii::String;
use std::string::utf8;
use sui::display;
use sui::object;
use sui::object::{UID};
use sui::package;
use sui::transfer;
use sui::transfer::public_transfer;
use sui::tx_context;
use sui::tx_context::{TxContext};

public struct HLLMING_NFT has drop {}

public struct NFT has key,store {
id: UID,
name: String,
}

fun init(otw: HLLMING_NFT, ctx: &mut sui::tx_context::TxContext) {
let keys = vector[
utf8(b"name"),
utf8(b"image_url"),
];

let values = vector[
utf8(b"{name}"),
utf8(b"https://avatars.githubusercontent.com/u/169317797"),
];

let publisher = package::claim(otw, ctx);
let mut display = display::new_with_fields<NFT>(&publisher, keys, values,ctx);

display::update_version(&mut display);

transfer::public_transfer(publisher, tx_context::sender(ctx));
transfer::public_transfer(display, tx_context::sender(ctx));
}

public entry fun mint_to(name: String, recipient: address,ctx: &mut TxContext) {
let nft = NFT{
id: object::new(ctx),
name,
};
public_transfer(nft, recipient)
}
}
Binary file added mover/HlLming/notes/nft.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 9 additions & 9 deletions mover/HlLming/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
- [x] package id 在 scan上的查看截图:![Scan截图](./notes/package.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 : 0x920491420bc64ee56160c3b36d1938575b07527e0e35310f1f5e42695b4ee83b
- [x] Faucet package id : 0x920491420bc64ee56160c3b36d1938575b07527e0e35310f1f5e42695b4ee83b
- [x] 转账 `My Coin` hash: NARDUX1DeBeyi4RzcnuDGrrDWKHfH1sEK81vQRcB1YP
- [x] `Faucet Coin` address1 mint hash: BBWHCM9HiALsnuUt1FopeoNznFxzz81JruLJzbzRk2Kn
- [x] `Faucet Coin` address2 mint hash: 4iYeXqf3hLT6DUQM6R4a9iLLEv7ciCrrsVTudnXWGfRu

## 03 move NFT
- [] nft package id :
- [] nft object id :
- [] 转账 nft hash:
- [] scan上的NFT截图:![Scan截图](./images/你的图片地址)
- [x] nft package id : 0xdb866ab73c2aa59855d267a13a07b48799ca4adfacaa85acaec03721d9af0f6c
- [x] nft object id : 0x03564380160f5d9382ba81c79b41415c827c8d532b83c892136286582275d925
- [x] 转账 nft hash: 67yG86BBCWRfuFWNQvr7jYDqZ32R4PwjsMvB2vKf1ZoP
- [x] scan上的NFT截图:![Scan截图](./notes/nft.png)

## 04 Move Game
- [] game package id :
Expand Down

0 comments on commit 939e1c8

Please sign in to comment.