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 #1260

Merged
merged 1 commit into from
Jul 24, 2024
Merged
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/404ll/code/task3/mynft/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 = "8616F2E3855F9CD22C6339699001728147605815419FEB1EF09E72CF5A05E332"
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.28.4"
edition = "2024.beta"
flavor = "sui"

[env]

[env.testnet]
chain-id = "4c78adac"
original-published-id = "0x9582447aab8669b8f97791efc7319114761d657251c75667f987a98b10be7dd6"
latest-published-id = "0x9582447aab8669b8f97791efc7319114761d657251c75667f987a98b10be7dd6"
published-version = "1"
37 changes: 37 additions & 0 deletions mover/404ll/code/task3/mynft/Move.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[package]
name = "mynft"
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]
mynft = "0x703f3e285af2ee26679bd14ce9d3f0cc840cb41541757a1e1ccd8d58db863fd2"

# 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"

197 changes: 197 additions & 0 deletions mover/404ll/code/task3/mynft/sources/log.txt

Large diffs are not rendered by default.

80 changes: 80 additions & 0 deletions mover/404ll/code/task3/mynft/sources/mynft.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@

module mynft::mynft {
use sui::url::{Self, Url};
use std::string;
use sui::event;

/// An example NFT that can be minted by anybody
public struct FireNFT has key, store {
id: UID,
/// Name for the token
name: string::String,
/// Description of the token
description: string::String,
/// URL for the token
url: Url,
// TODO: allow custom attributes
}

// ===== Events =====

public struct NFTMinted has copy, drop {
// The Object ID of the NFT
object_id: ID,
// The creator of the NFT
creator: address,
// The name of the NFT
name: string::String,
}

// ===== Public view functions =====

/// Get the NFT's `name`
public fun name(nft: &FireNFT): &string::String {
&nft.name
}

/// Get the NFT's `description`
public fun description(nft: &FireNFT): &string::String {
&nft.description
}

/// Get the NFT's `url`
public fun url(nft: &FireNFT): &Url {
&nft.url
}

// ===== Entrypoints =====

/// Create a new devnet_nft
public entry fun mint_to_sender(
name: vector<u8>,
description: vector<u8>,
url: vector<u8>,
ctx: &mut TxContext
) {
let sender = ctx.sender();
let nft = FireNFT {
id: object::new(ctx),
name: string::utf8(b"Fire"),
description: string::utf8(b"FireNFT"),
url: url::new_unsafe_from_bytes(b"https://sm.ms/image/I8MUP6C1fi2zYno")
};

event::emit(NFTMinted {
object_id: object::id(&nft),
creator: sender,
name: nft.name,
});

transfer::public_transfer(nft, sender);
}

/// Transfer `nft` to `recipient`
public entry fun transfer(
nft: FireNFT, recipient: address, _: &mut TxContext
) {
transfer::public_transfer(nft, recipient)
}

}
19 changes: 19 additions & 0 deletions mover/404ll/code/task3/mynft/tests/mynft_tests.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*
#[test_only]
module mynft::mynft_tests {
// uncomment this line to import the module
// use mynft::mynft;

const ENotImplemented: u64 = 0;

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

#[test, expected_failure(abort_code = ::mynft::mynft_tests::ENotImplemented)]
fun test_mynft_fail() {
abort ENotImplemented
}
}
*/
Binary file added mover/404ll/images/image-20240723234546877.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/404ll/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
- [0x9b8b1f4ece3c93c75f3abc1cd14b50d0aa7135fc4ba8a6ffe5f2929dca1f78ce] `Faucet Coin` address2 mint hash:

## 03 move NFT
- [] nft package id :
- [] nft object id :
- [] 转账 nft hash:
- [] scan上的NFT截图:![Scan截图](./images/你的图片地址)
- [0x9582447aab8669b8f97791efc7319114761d657251c75667f987a98b10be7dd6] nft package id :
- [0xb5794e99d1e39a098d7a004cd64b1cd45762a3e5a999a8927f1fd00432e4b62f] nft object id :
- [DCc5whebJi8fWKyBvu4A1WSsshmbraqpfzv5E9bBLZsR] 转账 nft hash:
- [![image-20240723234546877](image-20240723234546877.png)] scan上的NFT截图:![Scan截图](./images/你的图片地址)

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