Skip to content
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
Empty file.
18 changes: 18 additions & 0 deletions mover/murphy-zone/code/task01/hellosui.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module hellosui::hello;

use std::ascii::{String, string};
use sui::transfer::transfer;

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

fun init(ctx: &mut TxContext){
let hello_sui = Hello {
id: object::new(ctx),
say: string(b"murphy-zone"),
};

transfer(hello_sui, ctx.sender());
}
Binary file added mover/murphy-zone/images/package.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/murphy-zone/images/wallet.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/murphy-zone/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
## 基本信息
- Sui钱包地址: `0x1f1d6cb032e26b6ce52a587d16ff8ad7d32e83427a054b18e8b883e753247770`
> 首次参与需要完成第一个任务注册好钱包地址才被合并,并且后续学习奖励会打入这个地址
- github: `murphy-zone`

## 个人简介
- 工作经验: 25年
- 技术栈: `Rust` `Java` `deno` `typescript`
> 重要提示 请认真写自己的简介
- 多年web2开发经验,对Move特别感兴趣,想通过Move入门区块链
- 联系方式: tg: `murphy_huang`

## 任务

## 01 hello move
- [x] Sui cli version: sui 1.50.1-homebrew
- [x] Sui钱包截图: ![Sui钱包截图](./images/wallet.png)
- [x] package id: 0xa779996b9ba2c97534faddb963add6ac8defa8775ca72965eddc1946220b15cd
- [x] package id 在 scan上的查看截图:![Scan截图](./images/package.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 :

1 change: 1 addition & 0 deletions mover/murphy-zone/scan/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@