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

task3 #2032

Merged
merged 1 commit into from
Nov 30, 2024
Merged

task3 #2032

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
34 changes: 34 additions & 0 deletions mover/xushuhui346/code/task3/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 = "1C7E4E6784885553F41F77ACBDC5306913E332B17CDD69A828BE8590288858D2"
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 = "0xf75d3d88f4bf586b41ddd6f158f3aefe6a1df2eb8b4159b7c125d30b3128b213"
latest-published-id = "0xf75d3d88f4bf586b41ddd6f158f3aefe6a1df2eb8b4159b7c125d30b3128b213"
published-version = "1"
37 changes: 37 additions & 0 deletions mover/xushuhui346/code/task3/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://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]
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"

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"folders": [
{
"path": "../../../../../../.."
}
],
"settings": {}
}
33 changes: 33 additions & 0 deletions mover/xushuhui346/code/task3/my_nft/sources/my_nft.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
/// Module: my_nft
module my_nft::my_nft;
*/
module my_nft::my_nft;
use std::string;
use std::string::String;
use sui::transfer::transfer;
use sui::tx_context::sender;

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

fun init(ctx:&mut TxContext){
let my_nft = MYNFT{
id:object::new(ctx),
name:string::utf8(b"xushuhui346 NFT"),
image_url:string::utf8(b"https://avatars.githubusercontent.com/u/19965482?s=400&u=a17a3e2ec8a1f020682d5e2a9413b61889be5968&v=4")
};
transfer(my_nft,sender(ctx));
}

public entry fun mint(url:address,image_url:String,ctx:&mut TxContext){
let my_nft = MYNFT{
id:object::new(ctx),
name:string::utf8(b"xushuhui346 NFT"),
image_url:image_url
};
transfer(my_nft,url);
}
18 changes: 18 additions & 0 deletions mover/xushuhui346/code/task3/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/xushuhui346/images/xushuhuiNFT.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/xushuhui346/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
- [x] `Faucet Coin` address2 mint hash:FiuERVYA5YFg8BkYQE2F7sRsyqDshFka1cbFUS3pp68o

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

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