Skip to content

Commit

Permalink
task3
Browse files Browse the repository at this point in the history
  • Loading branch information
zhbbll committed Nov 14, 2024
1 parent ce91e2c commit c9c23a6
Show file tree
Hide file tree
Showing 6 changed files with 126 additions and 4 deletions.
34 changes: 34 additions & 0 deletions mover/zhbbll/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 = 2
manifest_digest = "4C9B47E7441289AA0D50D87EEB9836BD01CE3604E3B249490E7F2046EAEE3400"
deps_digest = "F8BBB0CCB2491CA29A3DF03D6F92277A4F3574266507ACD77214D37ECA3F3082"
dependencies = [
{ name = "Sui" },
]

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

[[move.package]]
name = "Sui"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "framework/testnet", subdir = "crates/sui-framework/packages/sui-framework" }

dependencies = [
{ name = "MoveStdlib" },
]

[move.toolchain-version]
compiler-version = "1.34.0"
edition = "2024.beta"
flavor = "sui"

[env]

[env.mainnet]
chain-id = "35834a8a"
original-published-id = "0x448c057605f8fe4dd9516bd2f6624004d89228e981e93fb92ea38119a27c027a"
latest-published-id = "0x448c057605f8fe4dd9516bd2f6624004d89228e981e93fb92ea38119a27c027a"
published-version = "1"
37 changes: 37 additions & 0 deletions mover/zhbbll/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://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"

31 changes: 31 additions & 0 deletions mover/zhbbll/code/task3/my_nft/sources/my_nft.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
module my_nft::nft {
use std::string;
use std::string::String;
use sui::transfer::transfer;
use sui::tx_context::sender;

public struct NFT has key{
id: UID,
name: String,
image_url: String,
}
fun init(ctx: &mut TxContext){
let nft = NFT{
id:object::new(ctx),
name:string::utf8(b"zhbbll NFT"),
image_url: string::utf8(b"https://avatars.githubusercontent.com/u/117818070?v=4"),
};
transfer(nft, sender(ctx));
}
public entry fun mint_nft(url: String, ctx: &mut TxContext){
let my_nft = NFT{
id:object::new(ctx),
name:string::utf8(b"zhbbll NFT"),
image_url: url,
};
transfer(my_nft, sender(ctx));
}
public entry fun transfer_nft(nft: NFT, to: address){
transfer(nft, to);
}
}
19 changes: 19 additions & 0 deletions mover/zhbbll/code/task3/my_nft/tests/my_nft_tests.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*
#[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/zhbbll/images/nft_scan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 5 additions & 4 deletions mover/zhbbll/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@

## 03 move NFT

- [] nft package id :
- [] nft object id :
- [] 转账 nft hash:
- [] scan上的NFT截图:
- [x] nft package id :0x448c057605f8fe4dd9516bd2f6624004d89228e981e93fb92ea38119a27c027a
- [x] nft object id : 0x7e0f24a545007a8607c161bc8e5c1bc61f329c69457fe813d5a81b93567f3857
- [x] 转账 nft hash:BMJ8mAhYrqpULDK8X9VQHkT9yLVMyCZrpW4WszH5fZrb
- [x] scan上的NFT截图: ![](./images/nft_scan.png)

## 04 Move Game

- [] game package id :
- [] deposit Coin hash:
- [] withdraw `Coin` hash:
Expand Down

0 comments on commit c9c23a6

Please sign in to comment.