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
zhbbll authored Nov 25, 2024
2 parents e25e3f4 + 402400e commit cf2f38a
Show file tree
Hide file tree
Showing 1,013 changed files with 83,581 additions and 769 deletions.
1 change: 1 addition & 0 deletions mover/001/coLearn2411/images/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.
File renamed without changes.
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.
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/0xHoGan/co-learn-2411/images/关注HOH.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.
1 change: 1 addition & 0 deletions mover/0xHoGan/co-learn-2411/project/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

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

## b站,推特关注

- [] b站关注截图: ![关注截图](./images/b站关注.png)


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

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

## 每周课程学习

- [] 第一周:![学习记录截图](./images/task1/11月5日课程学习.png)
- [] 第二周:![学习记录截图](./images/task3/11月12日课程学习.png)
- [] 第三周:![学习记录截图](./images/你的图片地址)
- [] 第四周:![学习记录截图](./images/你的图片地址)

## 参加直播答疑

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

## 群里分享学习笔记

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

## 对外输出学习笔记

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

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

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

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

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

## 提交项目

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


Empty file added mover/0xHoGan/code/readme.md
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ dependencies = [
]

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

[env]

[env.testnet]
chain-id = "4c78adac"
original-published-id = "0xdd4ca7a8ef868cfe3b9ac142bf1f6ba5643196165a6f0f6f9d76628acfab9a52"
latest-published-id = "0xdd4ca7a8ef868cfe3b9ac142bf1f6ba5643196165a6f0f6f9d76628acfab9a52"
original-published-id = "0xcfbaa6e97ae0b3184cbc9b72eb9a1f21f82523aa32bccf86c9c27f88bd583a15"
latest-published-id = "0xcfbaa6e97ae0b3184cbc9b72eb9a1f21f82523aa32bccf86c9c27f88bd583a15"
published-version = "1"
19 changes: 19 additions & 0 deletions mover/0xHoGan/code/task1/hello_move/sources/hello_move.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, sender};

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"0xHoGan"),
};
transfer(hello_move, sender(ctx));
}
Loading

0 comments on commit cf2f38a

Please sign in to comment.