自学内容网 自学内容网

3.task1 suimove helloword 上链

1.创建项目

sui move new hello_world

2.代码部分

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

3.发布到链上

sui client publish 

问题:

网络问题 ,切换为国内源

move.toml中修改


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

没钱

从水龙头拿钱

“水龙头”通常指的是一种分发加密货币或代币的机制,尤其是通过小额赠送或奖励的方式来吸引用户参与。

sui client faucet

查看钱

sui client gas


原文地址:https://blog.csdn.net/wusandaofwy/article/details/143726268

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!