Smart Contract - Hello World

Posted tekkaman

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Smart Contract - Hello World相关的知识,希望对你有一定的参考价值。

编写Smart Contract

1、包含头文件.

#include <eosiolib/eosio.hpp>
#include <eosiolib/print.hpp>

2、使用命名空间

using namespace eosio;

3、实现一个空的合约

class hello : public contract {
  public:
      using contract::contract;
};

4、合约中添加一个action

class hello : public contract {
  public:
      using contract::contract;
  
      [[eosio::action]]
      void hi( name user ) {
         print( "Hello, ", name{user});
      }
};

 5、添加转发表

EOSIO_DISPATCH( hello, (hi))

6、使用 eosio-cpp -o --abigen 生成 .wasm、.abi

eosio-cpp -o hello.wasm hello.cpp --abigen

7、用set contract 命令发布合约 

  技术分享图片

  -p 指明需要 hello的 active权限

cleos set contract hello /home/ubuntu/contracts/hello -p [email protected]

8、使用 push action 命令来使用

  技术分享图片

-p 指明本身的权限

leos push action hello hi ["bob"] -p [email protected]

 

参考:

1、https://developers.eos.io/eosio-home/docs/your-first-contract

以上是关于Smart Contract - Hello World的主要内容,如果未能解决你的问题,请参考以下文章

如何创建NFT并OpenSea上展示《alchemy How to Develop an NFT Smart Contract》译

如何创建NFT并OpenSea上展示《alchemy How to Develop an NFT Smart Contract》译

如何创建NFT并OpenSea上展示《alchemy How to Develop an NFT Smart Contract》译

翻译A Next-Generation Smart Contract and Decentralized Application Platform

随笔:zk-AuthFeed How to Feed Authenticated Data into Smart Contract with Zero Knowledge理解

[Contract] Solidity 生成随机数方案