Skip to content

Commit

Permalink
submit task2 and task3
Browse files Browse the repository at this point in the history
  • Loading branch information
SherryW0918 committed Nov 20, 2024
2 parents 2eda62d + eb36fa7 commit be82fd7
Show file tree
Hide file tree
Showing 1,007 changed files with 26,309 additions and 332 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ yarn-debug.log*
yarn-error.log*
sui.log.*
.history
*.Identifier

File renamed without changes.
1 change: 1 addition & 0 deletions mover/0xdiymax/co-learn-2411/project/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

54 changes: 54 additions & 0 deletions mover/0xdiymax/co-learn-2411/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# 这个模板是2024年11月份的共学营才需要的

## b站,推特关注

- [] b站,推特关注截图: ![关注截图](./images/你的图片地址)

## 为共学营宣传(在朋友圈或者群聊中转发海报/文章)

- [] 宣传截图:![宣传截图](./images/你的图片地址)

## 每周课程学习

- [] 第一周:![学习记录截图](./images/你的图片地址)
- [] 第二周:![学习记录截图](./images/你的图片地址)
- [] 第三周:![学习记录截图](./images/你的图片地址)
- [] 第四周:![学习记录截图](./images/你的图片地址)

## 参加直播答疑

- [] 第一周:![学习记录截图](./images/你的图片地址)
- [] 第二周:![学习记录截图](./images/你的图片地址)
- [] 第三周:![学习记录截图](./images/你的图片地址)
- [] 第四周:![学习记录截图](./images/你的图片地址)

## 群里分享学习笔记

- [] 第一篇笔记
- [] 第二篇笔记
- [] 第三篇笔记
- [] 第四篇笔记

## 对外输出学习笔记

- [] 第一篇笔记【学习笔记链接】
- [] 第二篇笔记【学习笔记链接】
- [] 第三篇笔记【学习笔记链接】
- [] 第四篇笔记【学习笔记链接】

## 在HOH社区公众号发布自己的技术文章

- [] 第一篇笔记【公众号文章链接】
- [] 第二篇笔记【公众号文章链接】
- [] 第三篇笔记【公众号文章链接】
- [] 第四篇笔记【公众号文章链接】

## 直播分享学习技巧/工具推荐

- [] 会议截图:![会议记录截图](./images/你的图片地址)

## 提交项目

- [] 项目提交![项目截图](./images/你的图片地址)


File renamed without changes.
34 changes: 34 additions & 0 deletions mover/0xdiymax/code/task1/hellomove/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 = 3
manifest_digest = "8B7DC3EDF1D81F9E2D46D8251E70F4B8D7097878F02438454C30AEF9F05D81D0"
deps_digest = "F8BBB0CCB2491CA29A3DF03D6F92277A4F3574266507ACD77214D37ECA3F3082"
dependencies = [
{ id = "Sui", name = "Sui" },
]

[[move.package]]
id = "MoveStdlib"
source = { git = "https://github.com/MystenLabs/sui.git", rev = "framework/testnet", subdir = "crates/sui-framework/packages/move-stdlib" }

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

dependencies = [
{ id = "MoveStdlib", name = "MoveStdlib" },
]

[move.toolchain-version]
compiler-version = "1.37.1"
edition = "2024.beta"
flavor = "sui"

[env]

[env.suiscan-testnet]
chain-id = "4c78adac"
original-published-id = "0x2d7a7036f79da9418d54472796752b722480eb450ee8e8ca92aca5e5c847f4dc"
latest-published-id = "0x2d7a7036f79da9418d54472796752b722480eb450ee8e8ca92aca5e5c847f4dc"
published-version = "1"
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ edition = "2024.beta" # edition = "legacy" to use legacy (pre-2024) Move
# authors = ["..."] # e.g., ["Joe Smith ([email protected])", "John Snow ([email protected])"]

[dependencies]
Sui = { git = "https://gitee
.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" }
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.
Expand Down
17 changes: 17 additions & 0 deletions mover/0xdiymax/code/task1/hellomove/sources/hellomove.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module hello_move::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_move = Hello {
id: object::new(ctx),
say: string(b"0xdiymax"),
};
transfer(hello_move, ctx.sender());
}
Binary file added mover/0xdiymax/images/task1_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/0xdiymax/images/task1_wallet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
54 changes: 54 additions & 0 deletions mover/0xdiymax/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
## 基本信息
- Sui钱包地址: `0x0395d56709af76cfae4f6e306a5185ce44931c7e8b6923ca43b4b8da6740f981`
> 首次参与需要完成第一个任务注册好钱包地址才被合并,并且后续学习奖励会打入这个地址
- github: `0xdiymax`

## 个人简介
- 工作经验: 7年
- 技术栈: `Node.js` `TypeScript`
> 重要提示 请认真写自己的简介
- 多年前端开发经验,熟悉 React、Next.js,现在在一家web3公司做链游
- 联系方式: tg: `Maxdiy01`

## 任务

## 01 hello move
- [] Sui cli version: sui 1.37.1-homebrew
- [] Sui钱包截图: ![Sui钱包截图](./images/task1_wallet.png)
- [] package id: 0x2d7a7036f79da9418d54472796752b722480eb450ee8e8ca92aca5e5c847f4dc
- [] package id 在 scan上的查看截图:![Scan截图](./images/task1_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/0xdiymax/scan/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Binary file added mover/AlexWaker/co-learn-2411/images/twitter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions mover/AlexWaker/co-learn-2411/project/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

54 changes: 54 additions & 0 deletions mover/AlexWaker/co-learn-2411/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# 这个模板是2024年11月份的共学营才需要的

## b站,推特关注

- [] 推特关注截图: ![关注截图](./images/twitter.png)
- [] B站关注截图: ![关注截图](./images/bilibili.png)
## 为共学营宣传(在朋友圈或者群聊中转发海报/文章)

- [] 宣传截图:![宣传截图](./images/broadcast.jpeg)

## 每周课程学习

- [] 第一周:![学习记录截图](./images/week1learn.png)
- [] 第二周:![学习记录截图](./images/你的图片地址)
- [] 第三周:![学习记录截图](./images/你的图片地址)
- [] 第四周:![学习记录截图](./images/你的图片地址)

## 参加直播答疑

- [] 第一周:![学习记录截图](./images/week1answer.jpeg)
- [] 第二周:![学习记录截图](./images/你的图片地址)
- [] 第三周:![学习记录截图](./images/你的图片地址)
- [] 第四周:![学习记录截图](./images/你的图片地址)

## 群里分享学习笔记

- [] 第一篇笔记
- [] 第二篇笔记
- [] 第三篇笔记
- [] 第四篇笔记

## 对外输出学习笔记

- [] 第一篇笔记【学习笔记链接】
- [] 第二篇笔记【学习笔记链接】
- [] 第三篇笔记【学习笔记链接】
- [] 第四篇笔记【学习笔记链接】

## 在HOH社区公众号发布自己的技术文章

- [] 第一篇笔记【公众号文章链接】
- [] 第二篇笔记【公众号文章链接】
- [] 第三篇笔记【公众号文章链接】
- [] 第四篇笔记【公众号文章链接】

## 直播分享学习技巧/工具推荐

- [] 会议截图:![会议记录截图](./images/你的图片地址)

## 提交项目

- [] 项目提交![项目截图](./images/你的图片地址)


Empty file added mover/AlexWaker/code/readme.md
Empty file.
29 changes: 29 additions & 0 deletions mover/AlexWaker/code/task1/hello.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
module my_first_package::HelloAlexWaker {

// use sui::object::{Self, UID};
// use sui::tx_context::{Self, TxContext};

/// 定义一个结构体 Greeting,用于存储问候信息
public struct Greeting has key, store {
id: UID,
message: vector<u8>,
}

/// 初始化函数,创建一个新的 Greeting 对象,并将 message 设置为 "Hello, Sui!"
public fun create_greeting(ctx: &mut TxContext): Greeting {
Greeting {
id: object::new(ctx),
message: b"Hello AlexWaker!"
}
}

/// 更新 Greeting 对象中的 message
public fun set_greeting(greeting: &mut Greeting, new_message: vector<u8>) {
greeting.message = new_message;
}

/// 获取 Greeting 对象中的 message
public fun get_greeting(greeting: &Greeting): vector<u8> {
greeting.message
}
}
47 changes: 47 additions & 0 deletions mover/AlexWaker/code/task2/my_coin.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@

/// Module: my_coin
module my_coin::alexwaker_coin {
use sui::coin::{Self, Coin, TreasuryCap};

public struct ALEXWAKER_COIN has drop {}
// 创建代币
// (TreasuryCap 代币的铸造权限 CoinMetadata 代币的参数)
fun init(witness: ALEXWAKER_COIN, ctx: &mut TxContext) {
let (treasury, metadata) = coin::create_currency(
witness,
9,
b"AWC2",
b"ALEXWAKER COIN NO2",
b"Alexwaker Coin No2",
option:: none(),
ctx
);

transfer::public_freeze_object(metadata);
transfer::public_transfer(treasury, tx_context::sender(ctx));
}

// 阻止后续修改
public entry fun mint_in_my_module(
treasury_cap: &mut TreasuryCap<ALEXWAKER_COIN>,
amount: u64,
recipient: address,
ctx: &mut TxContext
) {
let coin = coin::mint(treasury_cap, amount, ctx);
transfer::public_transfer(coin, recipient);
}

// 用于销毁指定的 Coin,并减少相应的总供应量
public entry fun burn(treasury_cap: &mut TreasuryCap<ALEXWAKER_COIN>, c: Coin<ALEXWAKER_COIN>) {
coin::burn(treasury_cap, c);
}
}


//funnyyanne hash Transaction Digest: EQ2hzDxSdSH1KGdmqRi3fb6mStKnqzN4vgKAv2xqojXB
// 调用指令 ,三个地址参数分别对应着
// PackageID 合约id 0x1f8d02082b92c84d74b4b524d5c425f5db43f2dd5268d22522920c94addbccbc
// Object Changes 中 Created Objects 的 ObjectType 中为 TreasuryCap 的 0x795e281148c1b8a20f7ef13eac01b69918313522eaa7e9bcf43540de1d13692b
// 接收者的地址 test2中的地址 0x7b8e0864967427679b4e129f79dc332a885c6087ec9e187b53451a9006ee15f2
// sui client call --package 0x1f8d02082b92c84d74b4b524d5c425f5db43f2dd5268d22522920c94addbccbc --module funnyyanne_coin --function mint_in_my_module --args 0x795e281148c1b8a20f7ef13eac01b69918313522eaa7e9bcf43540de1d13692b 20000 0x7b8e0864967427679b4e129f79dc332a885c6087ec9e187b53451a9006ee15f2
41 changes: 41 additions & 0 deletions mover/AlexWaker/code/task2/my_faucet_coin.move
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/// Module: faucet_coin
module my_faucet_coin::alexwaker_faucet_coin {
//use std::ascii;
use sui::coin::{Self, TreasuryCap};
//use sui::url;

public struct ALEXWAKER_FAUCET_COIN has drop {}

#[allow(lint(share_owned))]
fun init(witness: ALEXWAKER_FAUCET_COIN, ctx: &mut TxContext) {
let (treasury, metadata) = coin::create_currency(
witness,
9,
b"AWF",
b"AlexWaker_FAUCET_COIN",
b"alexwaker faucet coin. ",
option::none(),
ctx);

transfer::public_freeze_object(metadata);
transfer::public_share_object(treasury);
}

public entry fun mint_in_my_module(
treasury_cap: &mut TreasuryCap<ALEXWAKER_FAUCET_COIN>,
amount: u64,
recipient: address,
ctx: &mut TxContext
) {
let coin = coin::mint(treasury_cap, amount, ctx);
transfer::public_transfer(coin, recipient);
}
//testnet:
//packageid 0x0414a27f58e752e8659c5e86d3b563f39b9e9cd40e15df8eb2e4c8512b86f3ec
//TreasuryCap objectid 0x72444a11f047f344a12770c1b65cf6ff7592b79a9d45e6b077b1180a6f118575
//sui client call --package <packageid> --module <modulename> --function mint_in_my_module --args <treasurycap objectid> <amount> <address to be send>

//mainnet:
//packageid 0x2adc11d7339def7528121fb6302719cc37e588e4ea2672851efa8180c29037e5
//TreasuryCap objectid 0xe0c3f2fe67dfb2e47be028a8b3f4e9999c5aaac30adbc2523048d93f3f322622
}
Loading

0 comments on commit be82fd7

Please sign in to comment.