-
Notifications
You must be signed in to change notification settings - Fork 896
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1260 from 404ll/main
完成task3
- Loading branch information
Showing
7 changed files
with
371 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ([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] | ||
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" | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
*/ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters