EOS-RPC调用

https://eos.readthedocs.io/zh_CN/latest/API/EOSIO-RPC/

config.ini文件

http-server-address = 0.0.0.0:8888   http服务器本地监听

调用

root@ubuntu:~/initc# cleos -h

Options:

  -h,--help                  Print this help message and exit

  -u,--url TEXT=http://127.0.0.1:8888/       the http/https URL where nodeos is running

  --wallet-url TEXT=unix:///root/eosio-wallet/keosd.sock

监控action记录

获取用户交易记录的方法:get_actions

调用此方法必须

配置 filter-on = *

轻钱包设计

cleos 可以作为轻节点,访问远程节点区块信息,手机钱包可以模拟该功能。或者让后台程序去管理私钥

cleos -u http://192.168.1.88:8888 push action eosio.token transfer '["eosio", "initb","1000.0000 SYS","vote"]' -p eosio

可以远程调用rpc

开源钱包

http://blog.eosdata.io/index.php/eoswallet/

EOS 开源钱包

https://github.com/EOSPortal,GitHub 开源

https://github.com/espritblock/eos4j,GitHub 开源

https://github.com/eostoken/wallet,GitHub 开源

https://github.com/espritblock/react-native-eos,React

https://github.com/OracleChain/PocketEOS-IOS,PocketEOS iOS 版

https://github.com/OracleChain/PocketEOS-Android,PocketEOS 安卓版

https://github.com/eostea/eos-wallet,EOSTEA 出品,VUE + JS,开源

https://github.com/WayneChou1/EOSFramework,EOS本地签名的静态库

https://github.com/playerone-id/EosCommander,Android Client

https://github.com/maodaishan/bctest,Android Client

https://github.com/consenlabs/token-core-ios,imToken iOS

https://github.com/consenlabs/token-core-android,imToken Android

信息来源: http://tokenwallet.cc/

你可能感兴趣的:(EOS-RPC调用)