Skip to content
Open

task3 #2604

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/LXu2n/code/tesk3/my_nft/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build/*
34 changes: 34 additions & 0 deletions mover/LXu2n/code/tesk3/my_nft/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 = "8C52ED2D223593FEE147F367F525138B60AE5241502C690DBF03596118F5FB83"
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.52.2"
edition = "2024.beta"
flavor = "sui"

[env]

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

66 changes: 66 additions & 0 deletions mover/LXu2n/code/tesk3/my_nft/sources/my_nft.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
module my_nft::my_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 MY_NFT has drop {}


fun init(otw: MY_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"LXu2n nft"),
image_url: string::utf8(
b"https://avatars.githubusercontent.com/u/192428706?v=4"
),
};
transfer::public_transfer(nft, sender(ctx));
}


public entry fun mint(url: String, addr: address, ctx: &mut TxContext) {
let nft = MyNFT { id: object::new(ctx),
name:string::utf8(b"LXu2n nft"),
image_url:url};
transfer::public_transfer(nft, addr);
}
18 changes: 18 additions & 0 deletions mover/LXu2n/code/tesk3/my_nft/tests/my_nft_tests.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
#[test_only]
module my_nft::my_nft_tests;
// uncomment this line to import the module
// use my_nft::my_nft;

const ENotImplemented: u64 = 0;

#[test]
fun test_my_nft() {
// pass
}

#[test, expected_failure(abort_code = ::my_nft::my_nft_tests::ENotImplemented)]
fun test_my_nft_fail() {
abort ENotImplemented
}
*/
Binary file added mover/LXu2n/images/3.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: 4 additions & 4 deletions mover/LXu2n/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/你的图片地址)
- [] nft package id : 0x5aa269573a1b39700e090ec383fae20d1532fb1412a54e70f2eec77fedb28a87
- [] nft object id : 0xe3a09b4c00ef48ff91b355c032a46a5787d3ec073e5d61d54455bdf6bc0cf25e
- [] 转账 nft hash: pxpevETfPtMN5L9rK5RGYkKjaYAf4JRik189f5rn1A3
- [] scan上的NFT截图:![Scan截图](./images/3.png)

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