Skip to content

Commit

Permalink
Merge branch 'move-cn:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Sy711 authored Oct 10, 2024
2 parents 5e71e5b + 959b98e commit a333cdd
Show file tree
Hide file tree
Showing 14 changed files with 179 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mover/lianshus/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
- [] scan上的NFT截图:![Scan截图](./images/mynft.png)

## 04 Move Game
- [] game package id :
- [] deposit Coin hash:
- [] withdraw `Coin` hash:
- [] play game hash:
- [] game package id : 0x7dd4425d35749aa7d8cb105b6f905e6b0a3289906fefd249e2120b8d64298fd5
- [] deposit Coin hash:7VdsdHkGwkf9xqpUPCpL7BX6Dxv2KNchiMgN4e3AY7QQ
- [] withdraw `Coin` hash:CDMRq4Sbm1W9nFydiLgTSyXzFM6xCdeZJyKuW2eZJ86G
- [] play game hash:ALSdD3iHTbmVvgMQFZoF42JtqdCaywzgM7ECCmH8u1cz

## 05 Move Swap
- [] swap package id :
Expand Down
Empty file added mover/web3richer/code/readme.md
Empty file.
34 changes: 34 additions & 0 deletions mover/web3richer/code/task1/hello_move/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 = "D5BD5414330500DBE52BFCAD7F6067748E2B1C6DA7D1337A3107C013A7D3C7D6"
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 = "0x13679122eabfd92046d140e6261748b0cfeb05e25a7eb7dda626591139062c1a"
latest-published-id = "0x13679122eabfd92046d140e6261748b0cfeb05e25a7eb7dda626591139062c1a"
published-version = "1"
13 changes: 13 additions & 0 deletions mover/web3richer/code/task1/hello_move/Move.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[package]
name = "hello_move"
edition = "2024.beta" # edition = "legacy" to use legacy (pre-2024) Move

[dependencies]
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" }

[addresses]
hello_move = "0x0"

[dev-dependencies]

[dev-addresses]
19 changes: 19 additions & 0 deletions mover/web3richer/code/task1/hello_move/sources/hello.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module hello_move::hello {
use std::ascii::{String, string};
use sui::object::{Self,UID};
use sui::transfer::transfer;
use sui::tx_context::{TxContext};

public struct Hello has key{
id:UID,
say: String
}

fun init(ctx: &mut TxContext) {
let hello = Hello {
id:object::new(ctx),
say: string(b"web3richer"),
};
transfer(hello, ctx.sender());
}
}
Binary file added mover/web3richer/images/packageId.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mover/web3richer/images/suiWallet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
55 changes: 55 additions & 0 deletions mover/web3richer/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
## 基本信息
- Sui钱包地址: `0xd5ad287164b347491449d892ecfece0eb784c4d23a6023523a5232fbfbd8e3b7`
> 首次参与需要完成第一个任务注册好钱包地址才被合并,并且后续学习奖励会打入这个地址
- github: `web3richer`

## 个人简介
- 工作经验: 20年
- 技术栈: `Java` `Python` `Solidity` `Rust`
> 重要提示 请认真写自己的简介
- 多年互联网从业经验,主要从事支付、电商业务系统开发;目前自学区块链相关知识,已掌握Solidity,正在学习Rust及Move
- 联系方式: tg: `@web3richer`

## 任务

## 01 hello move
- [x] Sui cli version: sui 1.34.2-c9ae0f9282a0
- [x] Sui钱包截图:
![Sui钱包截图](./images/suiWallet.png)
- [x] package id: 0x13679122eabfd92046d140e6261748b0cfeb05e25a7eb7dda626591139062c1a
- [x] package id 在 scan上的查看截图:![Scan截图](./images/packageId.png)

## 02 move coin
- [] My Coin package id :
- [] Faucet package id :
- [] 转账 `My Coin` hash:
- [] `Faucet Coin` address1 mint hash:
- [] `Faucet Coin` address2 mint hash:

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

## 04 Move Game
- [] game package id :
- [] deposit Coin hash:
- [] withdraw `Coin` hash:
- [] play game hash:

## 05 Move Swap
- [] swap package id :
- [] call swap CoinA-> CoinB hash :
- [] call swap CoinB-> CoinA hash :

## 06 Dapp-kit SDK PTB
- [] save hash :

## 07 Move CTF Check In
- [] CLI call 截图 : ![截图](./images/你的图片地址)
- [] flag hash :

## 08 Move CTF Lets Move
- [] proof :
- [] flag hash :
Empty file added mover/zzulihjh/code/readme.md
Empty file.
Empty file added mover/zzulihjh/notes/readme.md
Empty file.
54 changes: 54 additions & 0 deletions mover/zzulihjh/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
## 基本信息
- Sui钱包地址: `0x0dbb37c998e1d24934c507cff72a221a59a7f8d0f606778dfc4d1f798686865a`
> 首次参与需要完成第一个任务注册好钱包地址才被合并,并且后续学习奖励会打入这个地址
- github: `zzulihjh`

## 个人简介
- 工作经验: 0年
- 技术栈: `Rust` `python`
> 重要提示 请认真写自己的简介
- 对Move特别感兴趣,想通过Move入门区块链
- 联系方式: tg: `mu shu`

## 任务

## 01 hello move
- [] Sui cli version: 1.34.0
- [] Sui钱包截图: ![Sui钱包截图](./sui_wallet.png)
- [] package id: 0x9f731aefab94655d53ab08f8787c2309e278999b3af6a28062932099ef3e9e3f
- [] package id 在 scan上的查看截图:![Scan截图](./scan.png)

## 02 move coin
- [] My Coin package id :
- [] Faucet package id :
- [] 转账 `My Coin` hash:
- [] `Faucet Coin` address1 mint hash:
- [] `Faucet Coin` address2 mint hash:

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

## 04 Move Game
- [] game package id :
- [] deposit Coin hash:
- [] withdraw `Coin` hash:
- [] play game hash:

## 05 Move Swap
- [] swap package id :
- [] call swap CoinA-> CoinB hash :
- [] call swap CoinB-> CoinA hash :

## 06 Dapp-kit SDK PTB
- [] save hash :

## 07 Move CTF Check In
- [] CLI call 截图 : ![截图](./images/你的图片地址)
- [] flag hash :

## 08 Move CTF Lets Move
- [] proof :
- [] flag hash :
Binary file added mover/zzulihjh/scan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mover/zzulihjh/sui_wallet.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 a333cdd

Please sign in to comment.