-
Notifications
You must be signed in to change notification settings - Fork 878
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
172 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
63
mover/huzhengen/code/task3/display_nft/sources/display_nft.move
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters