Skip to content

Commit

Permalink
Merge pull request #1960 from Veincealan/main
Browse files Browse the repository at this point in the history
Task3
  • Loading branch information
Sifotd authored Nov 21, 2024
2 parents 3106dca + 270a0d3 commit 42fc264
Show file tree
Hide file tree
Showing 10 changed files with 154 additions and 7 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions mover/Veincealan/co-learn-2411/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
## 每周课程学习

- [] 第一周:![学习记录截图](./images/Learn_NO1.jpg)
- [] 第二周:![学习记录截图](./images/你的图片地址)
- [] 第二周:![学习记录截图](./images/Learn_NO2.jpg)
- [] 第三周:![学习记录截图](./images/你的图片地址)
- [] 第四周:![学习记录截图](./images/你的图片地址)

## 参加直播答疑

- [] 第一周:![学习记录截图](./images/你的图片地址)
- [] 第二周:![学习记录截图](./images/你的图片地址)
- [] 第一周:![学习记录截图](./images/QA_Meeting_No1.jpg)
- [] 第二周:![学习记录截图](./images/QA_Meeting_No2.jpg)
- [] 第三周:![学习记录截图](./images/你的图片地址)
- [] 第四周:![学习记录截图](./images/你的图片地址)

Expand Down
34 changes: 34 additions & 0 deletions mover/Veincealan/code/task3/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 = "DAE1CD0266E7A5F059DB90223B5A3071F55069BDC6D3E8733CF84FBDFD4BC5B2"
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.1"
edition = "2024.beta"
flavor = "sui"

[env]

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

58 changes: 58 additions & 0 deletions mover/Veincealan/code/task3/sources/nft.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
module task3::nft {

use std::string::String;
use std::string::utf8;
use sui::display;
use sui::object;
use sui::object::UID;
use sui::package;
use sui::transfer;
use sui::transfer::transfer;
use sui::tx_context;
use sui::tx_context::TxContext;

public struct NFT has drop {}

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

fun init(witness: NFT, ctx: &mut TxContext) {
let key = vector[
utf8(b"github_id"),
utf8(b"image_url"),
];
let valus = vector[
utf8(b"{github_id}"),
utf8(b"{image_url}"),
];

let publisher = package::claim(witness, ctx);
let mut display = display::new_with_fields<MyNFT>(
&publisher, key, valus, ctx
);
display::update_version(&mut display);
transfer::public_transfer(publisher, tx_context::sender(ctx));
transfer::public_transfer(display, tx_context::sender(ctx));
}

public entry fun Mint(recipient: address, ctx: &mut TxContext) {
let github_id = utf8(b"Veincealan");
let image_url = utf8(b"https://avatars.githubusercontent.com/u/95604105?v=4&size=64");
let nft = MyNFT {
id: object::new(ctx),
github_id,
image_url,
};
transfer::public_transfer(nft, recipient);
}
public entry fun Burn(nft: MyNFT) {
let MyNFT { id, github_id: _, image_url: _ } = nft;
object::delete(id);
}


}

18 changes: 18 additions & 0 deletions mover/Veincealan/code/task3/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/Veincealan/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.
8 changes: 4 additions & 4 deletions mover/Veincealan/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 :0x84f9f40f9b4da0c8f44fc069a4bc6372965a6bbcb65491af9034f82023f345fa
- [] nft object id :0x5534ebe76e3f0db96b857bb4685557d5acbf2df7bfc17812151529b76e649415
- [] 转账 nft hash:6Xf9tFQSkPyZhD86dXKqjU6EMVTNpXMsyFVubZe8LS3c
- [] scan上的NFT截图:![Scan截图](./images/NFT_scan.png)

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

0 comments on commit 42fc264

Please sign in to comment.