获取所有命令
命令格式:$ cleos
cleos包含所有命令的文档。有关cleos已知的所有命令的列表,只需简单地运行它,不带任何参数:
$ cleos
ERROR: RequiredError: Subcommand required
Command Line Interface to EOSIO Client
Usage: cleos [OPTIONS] SUBCOMMAND
Options:
-h,--help 打印帮助信息并且退出
-u,--url TEXT=http://localhost:8888/
nodeos 运行的http/https URL
--wallet-url TEXT=http://localhost:8888/
keosd运行的 http/https URL
-v,--verbose 输出对错误的详细操作
子命令:
version 返回版本信息
create 在区块链上和区域外创建数据
get 从区块链中检索各种数据和信息
set 设置或更新区块链状态
transfer 从账户到账户转移EOS
net 与本地p2p网络连接进行交互
wallet 与本地钱包互动
sign 签署交易
push 将任意事务推送到区块链
multisig Multisig合同命令
system 将eosio.system合约行为发送到区块链。
获取所有子命令
命令格式: $ cleos ${command}
要获得有关任何特定子命令的帮助,请使用无参数运行它:
$ cleos create
ERROR: RequiredError: Subcommand required
Create various items, on and off the blockchain
Usage: ./cleos create SUBCOMMAND
Subcommands:
key Create a new keypair and print the public and private keys
account Create a new account on the blockchain
producer Create a new producer on the blockchain
$ cleos create account
ERROR: RequiredError: creator
Create a new account on the blockchain
Usage: ./cleos create account creator name OwnerKey ActiveKey
Positionals:
creator TEXT The name of the account creating the new account
name TEXT The name of the new account
OwnerKey TEXT The owner public key for the account
ActiveKey TEXT The active public key for the account
分享个《EOS智能合约与DApp开发入门教程》,欢迎大家来学习互动:
本教程帮助你快速入门EOS区块链去中心化应用的开发,内容涵盖EOS工具链、账户与钱包、发行代币、智能合约开发与部署、使用代码与智能合约交互等核心知识点,最后综合运用React和EOS的各知识点完成一个便签DApp的开发。
来源:oschina
链接:https://my.oschina.net/u/3837977/blog/1913479