Skip to content

Commit

Permalink
task3
Browse files Browse the repository at this point in the history
  • Loading branch information
huzhengen committed Nov 27, 2024
1 parent 5ba3b32 commit 2e29f00
Show file tree
Hide file tree
Showing 7 changed files with 172 additions and 4 deletions.
40 changes: 40 additions & 0 deletions mover/huzhengen/code/task3/display_nft/Move.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# @generated by Move, please check-in and do not edit manually.

[move]
version = 3
manifest_digest = "9C6BB38E4B353CE5BBCD6B378CED360DE2BE8AFA09C22723E93EAF321EDB2FFD"
deps_digest = "F8BBB0CCB2491CA29A3DF03D6F92277A4F3574266507ACD77214D37ECA3F3082"
dependencies = [
{ id = "Sui", name = "Sui" },
]

[[move.package]]
id = "MoveStdlib"
source = { git = "https://gitee.com/MystenLabs/sui.git", rev = "framework/testnet", subdir = "crates/sui-framework/packages/move-stdlib" }

[[move.package]]
id = "Sui"
source = { git = "https://gitee.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.37.3"
edition = "2024.beta"
flavor = "sui"

[env]

[env.testnet]
chain-id = "4c78adac"
original-published-id = "0xf6a53a51fd195b9edc80356cc3d9011d010bf5ea0ddc95755a8aa9e10805abdb"
latest-published-id = "0xf6a53a51fd195b9edc80356cc3d9011d010bf5ea0ddc95755a8aa9e10805abdb"
published-version = "1"

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

63 changes: 63 additions & 0 deletions mover/huzhengen/code/task3/display_nft/sources/display_nft.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
module display_nft::display_nft;
use std::string;
use sui::tx_context::{sender};
use std::string::{utf8, String};

use sui::package;
use sui::display;

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

public struct DISPLAY_NFT has drop {}

fun init(otw: DISPLAY_NFT, ctx: &mut TxContext) {
let keys = vector[
utf8(b"name"),
utf8(b"link"),
utf8(b"image_url"),
utf8(b"description"),
utf8(b"project_url"),
utf8(b"creator"),
];

let values = vector[
utf8(b"{name}"),
utf8(b"https://sui-heroes.io/hero/{id}"),
utf8(b"{image_url}"),
utf8(b"A true Hero of the Sui ecosystem!"),
utf8(b"https://sui-heroes.io"),
utf8(b"Unknown Sui Fan")
];

let publisher = package::claim(otw, ctx);

let mut display = display::new_with_fields<MyNFT>(
&publisher, keys, values, ctx
);

display::update_version(&mut display);

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


let nft = MyNFT {
id: object::new(ctx),
name: string::utf8(b"allen nft"),
image_url: string::utf8(
b"https://avatars.githubusercontent.com/u/10569262"
),
};
transfer::public_transfer(nft, sender(ctx));
}


public entry fun mint(name: String, image_url: String, ctx: &mut TxContext) {
let id = object::new(ctx);
let nft = MyNFT { id, name, image_url };
transfer::public_transfer(nft, sender(ctx));
}
20 changes: 20 additions & 0 deletions mover/huzhengen/code/task3/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
```
mainnet
5MSwM5qefa6r1esmmK2ZZXhmLGa6cbg1GyAv71x5rQ7M
https://suiscan.xyz/mainnet/tx/5MSwM5qefa6r1esmmK2ZZXhmLGa6cbg1GyAv71x5rQ7M
contract: https://suiscan.xyz/mainnet/object/0xe73a2c3f093cc3aa9c984fcfc714b08d5f4cc682fc683efecbd345fb4eaf27c9/contracts
create an nft: https://suiscan.xyz/mainnet/object/0x43e2aaba16240a66f9ec31d7c459185f88bd76626a536d02017ec8f0c09e60e1/txs
```

```
测试网
Az5FR3ckhkoPNv6gLRrujqGss8zg4uCM1qFsJ3yrLGwL
https://testnet.suivision.xyz/object/0xb4c158231698afc50fcd0f36f4af2577f1c4284776da8e18acaa7860b278463cf
create an nft: https://suiscan.xyz/testnet/object/0x0aacc3a31672b3429e33706d1493d7d094229278aeeb6436d994879a429f6915/txs
https://testnet.suivision.xyz/object/0x0aacc3a31672b3429e33706d1493d7d094229278aeeb6436d994879a429f6915
```
Binary file added mover/huzhengen/images/nft.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions mover/huzhengen/notes/readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
命令

```
sui client build
sui client publish
sui client publish --skip-dependency-verification
sui client faucet
sui client addresses
sui client gas
sui client envs
sui client new-env --alias=mainnet --rpc https://fullnode.mainnet.sui.io:443
sui client switch --env mainnet
sui client new-address ed25519
sui client active-address
sui client switch --address ADDRESS
```
8 changes: 4 additions & 4 deletions mover/huzhengen/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
- [] `Faucet Coin` address2 mint hash:

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

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

0 comments on commit 2e29f00

Please sign in to comment.