日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

第二篇 - EOS Currency 合约案例

發(fā)布時間:2025/3/15 编程问答 42 豆豆
生活随笔 收集整理的這篇文章主要介紹了 第二篇 - EOS Currency 合约案例 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

切換到eos/build/programs/cleos路徑下面。

1. 錢包設置

秘鑰需要保存好,后面解鎖時會用到。

liyuechun:cleos yuechunli$ ./cleos wallet create Creating wallet: default Save password to use in the future to unlock this wallet. Without password imported keys will not be retrievable. "PW5HtkrzGaNKGNKVGXc6icWiWdo7PFsjWJAdE2dJbt5bSnbwb7spd"

2. 為賬號部署合約

liyuechun:cleos yuechunli$ ./cleos set contract eosio ../../contracts/eosio.bios -p eosio liyuechun:cleos yuechunli$ ./cleos set contract eosio ../../contracts/eosio.bios -p eosio Reading WAST/WASM from ../../contracts/eosio.bios/eosio.bios.wast... Assembling WASM... Publishing contract... executed transaction: 32735994889238e18ba60341bb79f6b674738727e9d5996991f8f34b496e3a18 3288 bytes 2200576 cycles # eosio <= eosio::setcode {"account":"eosio","vmtype":0,"vmversion":0,"code":"0061736d0100000001581060037f7e7f0060057f7e7e7e7e... # eosio <= eosio::setabi {"account":"eosio","abi":{"types":[],"structs":[{"name":"set_account_limits","base":"","fields":[{"n... liyuechun:cleos yuechunli$

3. 創(chuàng)建2個key,導入key的私鑰

liyuechun:cleos yuechunli$ ./cleos create key Private key: 5Kg4i6WW6mfGXGjriU552KdAQ8tQyCU4mqtevVganWWbzQf1rD1 Public key: EOS5MSkE5DGgSurc7k3Sv9kWrev6E3GBBqasdiiC3yajPwrW7c4Uqliyuechun:cleos yuechunli$ ./cleos create key Private key: 5Kg2P7PRA7wWrW2s53JiaBur7PhDtDsCMZUwQ8Yvn8uAmu8xEMB Public key: EOS7wERhooVJwqYLuQn5v6UDZnL5KQpGJBDMQoktkxz4baNzicwLXliyuechun:cleos yuechunli$ ./cleos wallet import 5Kg4i6WW6mfGXGjriU552KdAQ8tQyCU4mqtevVganWWbzQf1rD1 imported private key for: EOS5MSkE5DGgSurc7k3Sv9kWrev6E3GBBqasdiiC3yajPwrW7c4Uq liyuechun:cleos yuechunli$ ./cleos wallet import 5Kg2P7PRA7wWrW2s53JiaBur7PhDtDsCMZUwQ8Yvn8uAmu8xEMB imported private key for: EOS7wERhooVJwqYLuQn5v6UDZnL5KQpGJBDMQoktkxz4baNzicwLX liyuechun:cleos yuechunli$

4. 根據生成的公鑰,創(chuàng)建帳號

$ liyuechun:cleos yuechunli$ ./cleos create account eosio eostoken EOS5MSkE5DGgSurc7k3Sv9kWrev6E3GBBqasdiiC3yajPwrW7c4Uq EOS7wERhooVJwqYLuQn5v6UDZnL5KQpGJBDMQoktkxz4baNzicwLX liyuechun:cleos yuechunli$ ./cleos create account eosio eostoken EOS5MSkE5DGgSurc7k3Sv9kWrev6E3GBBqasdiiC3yajPwrW7c4Uq EOS7wERhooVJwqYLuQn5v6UDZnL5KQpGJBDMQoktkxz4baNzicwLX executed transaction: e691042df8074a25f47b8364f58a03c2c407e64d2cbc7248e1e9a611a06fe547 352 bytes 102400 cycles # eosio <= eosio::newaccount {"creator":"eosio","name":"eostoken","owner":{"threshold":1,"keys":[{"key":"EOS5MSkE5DGgSurc7k3Sv9kW...

5. 查看賬號信息

liyuechun:cleos yuechunli$ ./cleos get account eostoken liyuechun:cleos yuechunli$ ./cleos get account eostoken {"account_name": "eostoken","permissions": [{"perm_name": "active","parent": "owner","required_auth": {"threshold": 1,"keys": [{"key": "EOS7wERhooVJwqYLuQn5v6UDZnL5KQpGJBDMQoktkxz4baNzicwLX","weight": 1}],"accounts": []}},{"perm_name": "owner","parent": "","required_auth": {"threshold": 1,"keys": [{"key": "EOS5MSkE5DGgSurc7k3Sv9kWrev6E3GBBqasdiiC3yajPwrW7c4Uq","weight": 1}],"accounts": []}}] } liyuechun:cleos yuechunli$

6. 檢測,并部署合約

$ ./cleos get code currency $ ./cleos set contract currency ../../contracts/currency $ ./cleos get code currency liyuechun:cleos yuechunli$ ./cleos get code currency code hash: 0000000000000000000000000000000000000000000000000000000000000000 liyuechun:cleos yuechunli$ ./cleos set contract currency ../../contracts/currency Reading WAST/WASM from ../../contracts/currency/currency.wast... Assembling WASM... Publishing contract... executed transaction: eec4d42d5c1aab8785ce8e55618bf209d2e4dbcaf881e004c260c779d5571cef 7112 bytes 2200576 cycles # eosio <= eosio::setcode {"account":"currency","vmtype":0,"vmversion":0,"code":"0061736d010000000199011860000060027e7e0060017... # eosio <= eosio::setabi {"account":"currency","abi":{"types":[{"new_type_name":"account_name","type":"name"}],"structs":[{"n... liyuechun:cleos yuechunli$ ./cleos get code currency code hash: d6c891fbdfcff597d82e17c81354574399b01d533e53d412093f03e1950fb9d4 liyuechun:cleos yuechunli$

7. 創(chuàng)建貨幣

$ ./cleos push action currency create '{"issuer":"currency","maximum_supply":"1000000.0000 CUR","can_freeze":"0","can_recall":"0","can_whitelist":"0"}' --permission currency@active liyuechun:cleos yuechunli$ ./cleos push action currency create '{"issuer":"currency","maximum_supply":"1000000.0000 CUR","can_freeze":"0","can_recall":"0","can_whitelist":"0"}' --permission currency@active executed transaction: ae92a14b810e1437e9a0e8ae0527268a1e0fbd834d8c0a6906c8b65d9b503dc4 248 bytes 103424 cycles # currency <= currency::create {"issuer":"currency","maximum_supply":"1000000.0000 CUR","can_freeze":0,"can_recall":0,"can_whitelis... >> create liyuechun:cleos yuechunli$

8. 發(fā)行貨幣

$ ./cleos push action currency issue '{"to":"currency","quantity":"1000.0000 CUR","memo":""}' --permission currency@active liyuechun:cleos yuechunli$ ./cleos push action currency issue '{"to":"currency","quantity":"1000.0000 CUR","memo":""}' --permission currency@active executed transaction: 7b8108d19aba6c8dcc601c321ef3c433cd2a3aedbd3ac1b217f06477792b40f7 248 bytes 106496 cycles # currency <= currency::issue {"to":"currency","quantity":"1000.0000 CUR","memo":""} >> issue liyuechun:cleos yuechunli$

9. 查看帳號信息

$ ./cleos get table currency currency accounts liyuechun:cleos yuechunli$ ./cleos get table currency currency accounts {"rows": [{"balance": "1000.0000 CUR","frozen": 0,"whitelist": 1}],"more": false } liyuechun:cleos yuechunli$

10. 轉賬

$ ./cleos push action currency transfer '{"from":"currency","to":"eosio","quantity":"20.0000 CUR","memo":"my first transfer"}' --permission currency@active $ ./cleos get table currency currency accounts liyuechun:cleos yuechunli$ ./cleos push action currency transfer '{"from":"currency","to":"eosio","quantity":"20.0000 CUR","memo":"my first transfer"}' --permission currency@active executed transaction: 4a24e5a9afd17abe61dcb3b3aff06a1c5ec94663f803d3d1801bd7a5046fea9e 272 bytes 109568 cycles # currency <= currency::transfer {"from":"currency","to":"eosio","quantity":"20.0000 CUR","memo":"my first transfer"} >> transfer # eosio <= currency::transfer {"from":"currency","to":"eosio","quantity":"20.0000 CUR","memo":"my first transfer"} liyuechun:cleos yuechunli$ ./cleos get table currency currency accounts {"rows": [{"balance": "980.0000 CUR","frozen": 0,"whitelist": 1}],"more": false }

http://liyuechun.org/2018/04/13/eos-contract/

總結

以上是生活随笔為你收集整理的第二篇 - EOS Currency 合约案例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。