Skip to content

Commit

Permalink
任务3
Browse files Browse the repository at this point in the history
  • Loading branch information
AlwenXX authored Oct 19, 2024
1 parent e9f8929 commit 9c38e2b
Show file tree
Hide file tree
Showing 6 changed files with 141 additions and 4 deletions.
34 changes: 34 additions & 0 deletions mover/AlwenXX/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 = 2
manifest_digest = "DEDE53BD567ECEDC2009BE853A86F47F6BDC3F1F03A6B00FAED274F07E74A18B"
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.2"
edition = "2024.beta"
flavor = "sui"

[env]

[env.mainnet]
chain-id = "35834a8a"
original-published-id = "0x022de3a37dfebba7dc4e1ac5af3718c038a8b94ce69a37f051133d4579827aac"
latest-published-id = "0x022de3a37dfebba7dc4e1ac5af3718c038a8b94ce69a37f051133d4579827aac"
published-version = "1"
37 changes: 37 additions & 0 deletions mover/AlwenXX/code/task3/Move.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[package]
name = "task3"
edition = "2024.beta" # edition = "legacy" to use legacy (pre-2024) Move
# license = "" # e.g., "MIT", "GPL", "Apache 2.0"
# authors = ["..."] # e.g., ["Joe Smith (joesmith@noemail.com)", "John Snow (johnsnow@noemail.com)"]

[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]
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"

47 changes: 47 additions & 0 deletions mover/AlwenXX/code/task3/sources/task3.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
module task3::alwenxx_nft {
use std::ascii::String;
use std::string::utf8;
use sui::display;
use sui::object;
use sui::object::{UID};
use sui::package;
use sui::transfer;
use sui::transfer::public_transfer;
use sui::tx_context;
use sui::tx_context::{TxContext};

public struct ALWENXX_NFT has drop {}

public struct NFT has key,store {
id: UID,
name: String,
}

fun init(otw: ALWENXX_NFT, ctx: &mut sui::tx_context::TxContext) {
let keys = vector[
utf8(b"name"),
utf8(b"image_url"),
];

let values = vector[
utf8(b"{name}"),
utf8(b"https://avatars.githubusercontent.com/u/169956867"),
];

let publisher = package::claim(otw, ctx);
let mut display = display::new_with_fields<NFT>(&publisher, keys, values,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_to(name: String, recipient: address,ctx: &mut TxContext) {
let nft = NFT{
id: object::new(ctx),
name,
};
public_transfer(nft, recipient)
}
}
19 changes: 19 additions & 0 deletions mover/AlwenXX/code/task3/tests/task3_tests.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*
#[test_only]
module task3::task3_tests {
// uncomment this line to import the module
// use task3::task3;
const ENotImplemented: u64 = 0;
#[test]
fun test_task3() {
// pass
}
#[test, expected_failure(abort_code = ::task3::task3_tests::ENotImplemented)]
fun test_task3_fail() {
abort ENotImplemented
}
}
*/
8 changes: 4 additions & 4 deletions mover/AlwenXX/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
- [x] `Faucet Coin` address2 mint hash: CVSnPsQ97N644WheSW11gRCwvkFkYG98cP1jVv2nso4r

## 03 move NFT
- [] nft package id :
- [] nft object id :
- [] 转账 nft hash:
- [] scan上的NFT截图:![Scan截图](./images/你的图片地址)
- [x] nft package id :0x022de3a37dfebba7dc4e1ac5af3718c038a8b94ce69a37f051133d4579827aac
- [x] nft object id : 0xf6a25af5f68edc93b0bffc88b325b48d1943e0cce537baa30c449768901ff86c
- [x] 转账 nft hash: A1iAyzAQdNnL4uM3kDG1Jan9Yn9DVxc4h94CXwbzoSBm
- [x] scan上的NFT截图:![Scan截图](./scn.png)

## 04 Move Game
- [] game package id :
Expand Down
Binary file added mover/AlwenXX/scn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9c38e2b

Please sign in to comment.