I hereby claim:
- I am bensig on github.
- I am bensig (https://keybase.io/bensig) on keybase.
- I have a public key ASCdnq6xLmnKBuhDp23a8kEv4moB4VpERdQ-NYPnWjAhxQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
START TESTING... | |
╔════════════════════╣ Tests tests/01_wallet ╠═══════════════════════════════╗ | |
Create default wallet [OK] | |
Create wallet with name [OK] | |
Create and import EOS Key [OK] | |
Create EOS Key and import to wallet [OK] | |
Wallet open default wallet [OK] | |
Wallet open wallet name [OK] |
Rank | Block Producer | Public Website and/or bp.json | Ownership Statement | API OR P2P NODE | |
---|---|---|---|---|---|
1 | starteosiobp | YES | YES | YES | |
2 | eos42freedom | YES | YES | YES | |
3 | eosnewyorkio | YES | YES | YES | |
4 | zbeosbp11111 | YES | YES | YES | |
5 | eoshuobipool | YES | YES | YES | |
6 | eosfishrocks | YES | YES | YES | |
7 | eoslaomaocom | YES | YES | YES | |
8 | bitfinexeos1 | YES | YES | YES | |
9 | eosswedenorg | YES | YES | YES |
# EOS21 协议 | |
将您的ERC20代币传送到EOS。 | |
## 概述 | |
EOS21协议可以实现ETH和EOS跨链代币转移。 | |
- .ETH (ERC20) –\> EOS21 –\> EOS (代币) |
# configuration example by bensig | |
###### producer plugin options - enable if running producer node | |
plugin = eosio::producer_plugin | |
## sig provider keys should match the key on your producer-name | |
signature-provider = <pubkey>=KEY:<privkey> | |
producer-name = eosio | |
## additional producer plugin options can be left default | |
max-transaction-time = 10000 |
Verifying my Blockstack ID is secured with the address 1Eba4EdgQphQef2PhUd7i3z7sdLKKS29mh https://explorer.blockstack.org/address/1Eba4EdgQphQef2PhUd7i3z7sdLKKS29mh |
upstream nodeos-full-history { | |
server eos.greymass.com:80; | |
} | |
upstream nodeos-full-history-ssl { | |
server eos.greymass.com:443; | |
} | |
upstream nodeos-limited-history { | |
server node1.yourdomain.io:port; |
#hapi | |
plugin = eosio::http_plugin | |
filter-on=* | |
filter-out=eosio:onblock: | |
history-index-state-db-size-mb = 32768 | |
history-state-db-size-mb = 32768 | |
history-per-account = 100 | |
history-dir = history | |
history-index-dir = index |
#!/bin/bash | |
NODEOS=~/src/eos/build/programs/nodeos/nodeos | |
DATADIR=~/node | |
GENESIS=~/src/eos/genesis.json | |
CONFIG="config.ini" | |
$DATADIR/stop.sh || true | |
TIMESTAMP=$(/bin/date +%s) | |
$NODEOS --data-dir $DATADIR --config-dir $DATADIR -c $CONFIG "$@" >> $DATADIR/stdout.txt 2>> $DATADIR/eos-$TIMESTAMP.log & echo $! > $DATADIR/nodeos.pid | |
/usr/bin/unlink $DATADIR/eos.log | |
/bin/ln -s $DATADIR/eos-$TIMESTAMP.log $DATADIR/eos.log |
#!/bin/bash | |
NODEOS=/home/ubuntu/src/wax-blockchain/build/programs/nodeos/nodeos | |
DATADIR=/home/ubuntu/eos/wax/node | |
GENESIS=/home/ubuntu/eos/wax/genesis.json | |
if [ -f $DATADIR"/nodeos.pid" ]; then | |
pid=$(cat $DATADIR"/nodeos.pid") | |
echo $pid | |
kill $pid | |
rm -r $DATADIR"/nodeos.pid" |