-
Notifications
You must be signed in to change notification settings - Fork 905
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 #2090 from fengfengxiong123/main
task4
- Loading branch information
Showing
27 changed files
with
742 additions
and
89 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
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
mover/fengfengxiong123/code/task2/my_coin2/sources/my_coin2.move
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
mover/fengfengxiong123/code/task2/my_coin2/tests/my_coin2_tests.move
This file was deleted.
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,10 @@ | ||
sui client call \ | ||
--package 0x2 \ | ||
--module coin \ | ||
--function mint_and_transfer \ | ||
--type-args 0xd54f752374f2112fec4a0707c51daa98d5d1e8f0ace74977090ccff9d083a40a::faucetcoin::FAUCETCOIN \ | ||
--args \ | ||
0x7f4a9920bdda5357d382ba8f6f46a3733b66a88aabfa0031d71e1f0d98abf778 \ | ||
1000000000 \ | ||
0x2af6c1938280cf418ce388f62deffe9a56746d0887c9e6c031a4127016987e35 \ | ||
--gas-budget 100000000 |
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 = "1C7E4E6784885553F41F77ACBDC5306913E332B17CDD69A828BE8590288858D2" | ||
deps_digest = "F8BBB0CCB2491CA29A3DF03D6F92277A4F3574266507ACD77214D37ECA3F3082" | ||
dependencies = [ | ||
{ name = "Sui" }, | ||
] | ||
|
||
[[move.package]] | ||
name = "MoveStdlib" | ||
source = { git = "https://gitee.com/MystenLabs/sui.git", rev = "framework/testnet", subdir = "crates\\sui-framework\\packages\\move-stdlib" } | ||
|
||
[[move.package]] | ||
name = "Sui" | ||
source = { git = "https://gitee.com/MystenLabs/sui.git", rev = "framework/testnet", subdir = "crates/sui-framework/packages/sui-framework" } | ||
|
||
dependencies = [ | ||
{ name = "MoveStdlib" }, | ||
] | ||
|
||
[move.toolchain-version] | ||
compiler-version = "1.34.1" | ||
edition = "2024.beta" | ||
flavor = "sui" | ||
|
||
[env] | ||
|
||
[env.mainnet] | ||
chain-id = "35834a8a" | ||
original-published-id = "0x7dcd01039a557295a02e0790a5821ff807dd2707b13e1aa7ae8eb15e21948465" | ||
latest-published-id = "0x7dcd01039a557295a02e0790a5821ff807dd2707b13e1aa7ae8eb15e21948465" | ||
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "my_coin2" | ||
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" } | ||
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. | ||
|
@@ -19,7 +19,7 @@ Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-fram | |
# Override = { local = "../conflicting/version", override = true } | ||
|
||
[addresses] | ||
my_coin2 = "0x0" | ||
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. | ||
|
48 changes: 48 additions & 0 deletions
48
mover/fengfengxiong123/code/task3/my_nft/sources/nft2.move
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,48 @@ | ||
module my_nft::nft2 { | ||
use std::string::String; | ||
use std::string::utf8; | ||
use sui::display; | ||
// use sui::object; | ||
use sui::package; | ||
// use sui::transfer::transfer; | ||
use sui::transfer::public_transfer; | ||
|
||
public struct NFT2 has drop {} | ||
|
||
public struct MyNft2 has key, store { | ||
id: UID, | ||
name: String, | ||
image_url: String, | ||
} | ||
|
||
fun init(otw: NFT2, ctx: &mut TxContext) { | ||
let keys = vector[ | ||
utf8(b"name"), | ||
utf8(b"description"), | ||
utf8(b"image_url"), | ||
]; | ||
let values = vector[ | ||
utf8(b"{name}"), | ||
utf8(b"this is {name}'s NFT"), | ||
utf8(b"{image_url}"), | ||
]; | ||
let publisher = package::claim(otw, ctx); | ||
let mut display = display::new_with_fields<MyNft2>(&publisher, keys, values, ctx); | ||
|
||
display.update_version(); | ||
|
||
public_transfer(publisher, tx_context::sender(ctx)); | ||
public_transfer(display, tx_context::sender(ctx)); | ||
} | ||
|
||
public entry fun mint(addr: address, ctx: &mut TxContext) { | ||
let nft = MyNft2 { | ||
id: object::new(ctx), | ||
name: utf8(b"fengfengxiong123"), | ||
image_url: utf8( | ||
b"https://avatars.githubusercontent.com/u/46967327?u=d074eb812d53a9d64a78464af56e0a801cfbbbf2&v=4" | ||
) | ||
}; | ||
public_transfer(nft, addr) | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
mover/fengfengxiong123/code/task3/my_nft/tests/my_nft_tests.move
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 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 | ||
} | ||
} | ||
*/ |
Oops, something went wrong.