1 Star 1 Fork 1

eostech/contract-example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.sh 962 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhopen 提交于 2020-09-11 11:03 . test.sh
source eosenv
# 创建合约账户
cl system newaccount eosio ab [OwnerKey] [ActiveKey]
# 发布合约
cl set contract ab ./build addressbook.wasm addressbook.abi
# 添加
cl push action ab add '["alice", "zhangsan", 18, 13811111111, "北京通州"]' -p alice
cl push action ab add '["alice", "lisi", 19, 13822222222, "北京通州"]' -p alice
cl push action ab add '["bob", "zhangsan", 29, 13833333333, "北京通州"]' -p bob
# 查询
cl get table ab alice addressbooks
cl get table ab alice addressbooks --index 2 --key-type i64 -U "13811111111" -L "13811111111"
# 修改
cl push action ab update '["alice", 0, "zhangsan", 18, 13811094444, "北京朝阳"]' -p alice
# 删除
cl push action ab remove '[ "alice", 0]' -p alice
# 清空
cl push action ab clean '[ "bob", 0, "131313"]' -p bob
cl push action ab syscleantab '
{
"table": "addressbooks",
"scope": ["alice", "bob"],
"batchsize": 1000,
"confirm": "addressbook"
}' -p addressbook
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/eostech/contract-example.git
git@gitee.com:eostech/contract-example.git
eostech
contract-example
contract-example
master

搜索帮助