Scatter is a browser extension that allows you to sign transactions for multiple blockchains and provide personal information to web applications without ever exposing your keys or filling out forms.
Surou 发布的文章
Scatter is a browser extension that allows you to sign transactions for multiple blockchains and provide personal information to web applications without ever exposing your keys or filling out forms.
EOS commander is an Android client for EOSIO blockchain for EOS dApp developer. It includes functions of wallet. Developers can test wallet, account, transaction, contract, etc. with simple input on the Android device. PLACTAL team hopes this makes more EOS mobile DApps activated.
#include "eoslib/print.hpp"
#include "BigIntegerLibrary.hpp"
BigInteger a = 65536;
print("a * a * a * a * a * a * a * a: ", ( a * a * a * a * a * a * a * a ) );
then, eosd prints 340282366920938463463374607431768211456.
producer-name = eos.dosp2p-peer-address = node1.eosnewyork.io:6987
p2p-peer-address = p2p.eos42.io:9876
p2p-peer-address = peering.mainnet.eoscanada.com:9876
p2p-peer-address = node1.starteos.io:9876
plugin = eosio::chain_api_plugin
plugin = eosio::history_api_plugin
plugin = eosio::chain_plugin
plugin = eosio::history_plugin
plugin = eosio::net_plugin
plugin = eosio::net_api_plugin
在~/.local/share/eosio/nodeos/config目录下执行 (目录可随意)
wget https://github.com/EOS-Mainnet/eos/raw/mainnet-1.0.5/mainnet-genesis.json
在上面目录下执行nodeos --genesis-json mainnet-genesis.json
出现错误Genesis state can only be set on a fresh blockchain
修改执行命令为
nodeos --genesis-json mainnet-genesis.json --delete-all-blocks
执行cleos get info查看chain_id

已经为EOS主网络。
curl http://192.168.1.168:8888/v1/wallet/list_keys{"code":500,"message":"Internal Service Error","error":{"code":7,"name":"bad_cast_exception","what":"Bad Cast","details":[{"message":"Invalid cast from object_type to Array","file":"variant.cpp","line_number":535,"method":"get_array"}]}}
list_keys now requires an argument, which is your wallet password.curl --request POST --url http://192.168.1.112:8888/v1/wallet/list_keys --data '["default","PW5K2Rg4rSYanxx..."]'
正确返回对应钱包内所有公钥私钥。
cleos wallet create
钱包位置是在/home/surou/eosio-wallet/./default.wallet
可以用cleos wallet create再次创建 查看当前钱包文件位置。
但是 wallet_api_plugin 查找的位置是在 /home/surou/.local/share/eosio/nodeos/data/./default.wallet(1.0 release左右之后 config.ini wallet-dir = ".")
cp /home/surou/eosio-wallet/./default.wallet /home/surou/.local/share/eosio/nodeos/data/