├── scripts ├── bp04_claimReward.sh ├── bp06_unRegisterProducer.sh ├── transfer_from_to.sh ├── bp03_voteProducer.sh ├── bp07_buy_RAM.sh ├── bp02_stakeTokens.sh ├── bp05_unStakeTokens.sh ├── bp01_registerProducer.sh └── bp00_createAccount.sh ├── cleos.sh ├── Wallet ├── start_wallet.sh └── stop_wallet.sh ├── start.sh ├── genesis.json ├── stop.sh ├── LICENSE ├── README.md └── config.ini /scripts/bp04_claimReward.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS mainnet 6 | # 7 | # https://github.com/CryptoLions/EOS-MainNet 8 | # 9 | ################################################################################ 10 | 11 | # YOUR BP ACCOUNT NAME 12 | ACCOUNT="" 13 | 14 | ../cleos.sh system claimrewards $ACCOUNT -p $ACCOUNT 15 | -------------------------------------------------------------------------------- /scripts/bp06_unRegisterProducer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS mainnet 6 | # 7 | # https://github.com/CryptoLions/EOS-MainNet 8 | # 9 | ################################################################################ 10 | 11 | # BP's ACCOUNT NAME 12 | ACCOUNT="" 13 | 14 | ../cleos.sh system unregprod $ACCOUNT -p $ACCOUNT 15 | -------------------------------------------------------------------------------- /scripts/transfer_from_to.sh: -------------------------------------------------------------------------------- 1 | !/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS MainNet 6 | # 7 | # https://github.com/CryptoLions/ 8 | # 9 | ################################################################################ 10 | 11 | 12 | FROM="" 13 | TO="" 14 | AMOUNT="1.0000 EOS" 15 | MEMO="..." 16 | ../cleos.sh transfer $FROM $TO "$AMOUNT" "$MEMO" -p $FROM 17 | -------------------------------------------------------------------------------- /scripts/bp03_voteProducer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS mainnet 6 | # 7 | # https://github.com/CryptoLions/EOS-MainNet 8 | # 9 | ################################################################################ 10 | 11 | # VOTER ACCOUNT NAME 12 | VOTER="" 13 | 14 | # BP's you want to vote on 15 | VOTEFOR="cryptolions1 eosswedenorg eosriobrazil eosnewyorkio" 16 | 17 | ../cleos.sh system voteproducer prods $VOTER $VOTEFOR -p $VOTER 18 | -------------------------------------------------------------------------------- /scripts/bp07_buy_RAM.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS mainnet 6 | # 7 | # https://github.com/CryptoLions/EOS-MainNet 8 | # 9 | ################################################################################ 10 | 11 | # PAYER ACCOUNT NAME 12 | PAYER="" 13 | 14 | # RECEIVER ACCOUNT NAME 15 | RECEIVER="" 16 | 17 | # AMOUNT IN EOS YOU WILL SPENT TO BUY RAM 18 | QUANT="0.1000 EOS" 19 | 20 | ../cleos.sh system buyram $PAYER $RECEIVER "$QUANT" -p $PAYER 21 | -------------------------------------------------------------------------------- /cleos.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS mainnet 6 | # 7 | # https://github.com/CryptoLions/EOS-MainNet 8 | # 9 | ############################################################################### 10 | 11 | NODEOSBINDIR="/home/eos-sources/eos/build/programs" 12 | 13 | NODEHOST="127.0.0.1" 14 | NODEPORT="8888" 15 | 16 | WALLETHOST="127.0.0.1" 17 | WALLETPORT="3000" 18 | 19 | 20 | $NODEOSBINDIR/cleos/cleos -u http://$NODEHOST:$NODEPORT --wallet-url http://$WALLETHOST:$WALLETPORT "$@" 21 | -------------------------------------------------------------------------------- /scripts/bp02_stakeTokens.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS mainnet 6 | # 7 | # https://github.com/CryptoLions/EOS-MainNet 8 | # 9 | ################################################################################ 10 | 11 | # SENDER ACCOUNT NAME 12 | FROM="" 13 | 14 | # RECEIVER ACCOUNT NAME 15 | TO="" 16 | 17 | #Delegate NET bandwidth 18 | NET="1.0000 EOS" 19 | 20 | #Delegate CPU bandwidth 21 | CPU="1.0000 EOS" 22 | 23 | ../cleos.sh system delegatebw $FROM $TO "$NET" "$CPU" -p $FROM 24 | -------------------------------------------------------------------------------- /scripts/bp05_unStakeTokens.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS mainnet 6 | # 7 | # https://github.com/CryptoLions/EOS-MainNet 8 | # 9 | ################################################################################ 10 | 11 | # YOUR ACCOUNT NAME 12 | FROM="" 13 | 14 | # UNDELEGATE ACCOUNT NAME FROM 15 | TO="" 16 | 17 | # UNDELEGATE NET BANDWIDTH 18 | NET="1.0000 EOS" 19 | 20 | # UNDELEGATE CPU BANDWIDTH 21 | CPU="1.0000 EOS" 22 | 23 | ../cleos.sh system undelegatebw $FROM $TO $NET $CPU -p $FROM 24 | -------------------------------------------------------------------------------- /Wallet/start_wallet.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ################################################################################ 4 | # 5 | # Scrip Created by http://CryptoLions.io 6 | # For EOS mainnet 7 | # 8 | # https://github.com/CryptoLions/EOS-MainNet 9 | # 10 | ############################################################################### 11 | 12 | NODEOSBINDIR="/home/eos-sources/eos/build/programs" 13 | DATADIR="/opt/EOSmainNet/Wallet" 14 | WALLET_HOST="127.0.0.1" 15 | WALLET_POSRT="3000" 16 | 17 | 18 | $DATADIR/stop_wallet.sh 19 | $NODEOSBINDIR/keosd/keosd --config-dir $DATADIR --wallet-dir $DATADIR --http-server-address $WALLET_HOST:$WALLET_POSRT $@ & echo $! > $DATADIR/wallet.pid 20 | -------------------------------------------------------------------------------- /scripts/bp01_registerProducer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS mainnet 6 | # 7 | # https://github.com/CryptoLions/EOS-MainNet 8 | # 9 | ################################################################################ 10 | #PRODUCER_ACCOUNT 11 | ACCOUNT="" 12 | 13 | #PRODUCER_PUB_BLOCK_SIGN_KEY 14 | PUBKEY="" 15 | 16 | #PRODUCER WEB-Page. Please uplad to that addres bp.json for voting portals. Info: https://github.com/eosrio/bp-info-standard 17 | #URL="http://cryptolions.io" 18 | URL="" 19 | 20 | ../cleos.sh system regproducer $ACCOUNT $PUBKEY "$URL" -p $ACCOUNT 21 | 22 | -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS mainnet 6 | # 7 | # https://github.com/CryptoLions/EOS-MainNet 8 | # 9 | ############################################################################### 10 | 11 | DATADIR="/opt/EOSmainNet" 12 | NODEOSBINDIR="/home/eos-sources/eos/build/programs" 13 | 14 | 15 | $DATADIR/stop.sh 16 | echo -e "Starting Nodeos \n"; 17 | 18 | ulimit -c unlimited 19 | ulimit -n 65535 20 | ulimit -s 64000 21 | 22 | $NODEOSBINDIR/nodeos/nodeos --data-dir $DATADIR --config-dir $DATADIR "$@" > $DATADIR/stdout.txt 2> $DATADIR/stderr.txt & echo $! > $DATADIR/nodeos.pid 23 | -------------------------------------------------------------------------------- /Wallet/stop_wallet.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS mainnet 6 | # 7 | # https://github.com/CryptoLions/EOS-MainNet 8 | # 9 | ############################################################################### 10 | 11 | DIR="/opt/EOSmainNet/Wallet" 12 | 13 | if [ -f $DIR"/wallet.pid" ]; then 14 | pid=$(cat $DIR"/wallet.pid") 15 | echo $pid 16 | kill $pid 17 | rm -r $DIR"/wallet.pid" 18 | 19 | echo -ne "Stoping Wallet" 20 | 21 | while true; do 22 | [ ! -d "/proc/$pid/fd" ] && break 23 | echo -ne "." 24 | sleep 1 25 | done 26 | echo -ne "\rWallet stopped. \n" 27 | 28 | fi 29 | -------------------------------------------------------------------------------- /scripts/bp00_createAccount.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS mainnet 6 | # 7 | # https://github.com/CryptoLions/ 8 | # 9 | ################################################################################ 10 | 11 | #YOUR_ACCOUNT_NAME 12 | CREATOR="" 13 | 14 | #NEW_ACCOUNT_NAME 15 | NEWACC="" 16 | 17 | #NEW_ACCOUNT_OWNER_PUB_KEY 18 | KEY_OWNER_1="" 19 | 20 | #NEW_ACCOUNT_ACTIVE_PUB_KEY 21 | KEY_ACTIVE_1="" 22 | 23 | #STAKE to CPU 24 | STAKE_CPU="1.0000 EOS" 25 | 26 | #STAKE to NET 27 | STAKE_NET="1.0000 EOS" 28 | 29 | #Buy RAM kbyts 30 | BUYRAM=8 31 | 32 | ../cleos.sh system newaccount --stake-net "$STAKE_NET" --stake-cpu "$STAKE_CPU" --buy-ram-kbytes $BUYRAM $CREATOR $NEWACC $KEY_OWNER_1 $KEY_ACTIVE_1 33 | 34 | 35 | -------------------------------------------------------------------------------- /genesis.json: -------------------------------------------------------------------------------- 1 | { 2 | "initial_timestamp": "2018-06-08T08:08:08.888", 3 | "initial_key": "EOS7EarnUhcyYqmdnPon8rm7mBCTnBoot6o7fE2WzjvEX2TdggbL3", 4 | "initial_configuration": { 5 | "max_block_net_usage": 1048576, 6 | "target_block_net_usage_pct": 1000, 7 | "max_transaction_net_usage": 524288, 8 | "base_per_transaction_net_usage": 12, 9 | "net_usage_leeway": 500, 10 | "context_free_discount_net_usage_num": 20, 11 | "context_free_discount_net_usage_den": 100, 12 | "max_block_cpu_usage": 200000, 13 | "target_block_cpu_usage_pct": 1000, 14 | "max_transaction_cpu_usage": 150000, 15 | "min_transaction_cpu_usage": 100, 16 | "max_transaction_lifetime": 3600, 17 | "deferred_trx_expiration_window": 600, 18 | "max_transaction_delay": 3888000, 19 | "max_inline_action_size": 4096, 20 | "max_inline_action_depth": 4, 21 | "max_authority_depth": 6 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ################################################################################ 3 | # 4 | # Scrip Created by http://CryptoLions.io 5 | # For EOS mainnet 6 | # 7 | # https://github.com/CryptoLions/EOS-MainNet 8 | # 9 | ############################################################################### 10 | 11 | DIR="/opt/EOSmainNet" 12 | 13 | 14 | if [ -f $DIR"/nodeos.pid" ]; then 15 | pid=`cat $DIR"/nodeos.pid"` 16 | echo $pid 17 | kill $pid 18 | 19 | 20 | echo -ne "Stoping Nodeos" 21 | 22 | while true; do 23 | [ ! -d "/proc/$pid/fd" ] && break 24 | echo -ne "." 25 | sleep 1 26 | done 27 | rm -r $DIR"/nodeos.pid" 28 | 29 | DATE=$(date -d "now" +'%Y_%m_%d-%H_%M') 30 | if [ ! -d $DIR/logs ]; then 31 | mkdir $DIR/logs 32 | fi 33 | tar -pcvzf $DIR/logs/stderr-$DATE.txt.tar.gz stderr.txt stdout.txt 34 | 35 | 36 | echo -ne "\rNodeos Stopped. \n" 37 | fi 38 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Cryptolions.io 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Welcome to the EOS MainNet 2 | 3 | Based on tag: mainnet-1.6.0 4 | Network Monitor and Voting command prepering tool: EOSnetworkMonitor.io 5 | 6 | ! new nodeos config parametr in 1.6.0: 7 | `chain-threads = 8` 8 | 9 | 10 | # Manual installation 11 | 12 | ## Install EOS 13 | 14 | ``` 15 | mkdir /home/eos-sources 16 | cd /home/eos-sources 17 | 18 | git clone https://github.com/EOS-Mainnet/eos.git --recursive 19 | cd eos 20 | 21 | git checkout mainnet-1.6.0 22 | git submodule update --init --recursive 23 | 24 | ./eosio_build.sh -P -f 25 | ``` 26 | 27 | ## Update EOS 28 | 29 | ``` 30 | mkdir /home/eos-sources 31 | cd /home/eos-sources/eos 32 | 33 | git checkout mainnet-1.6.0 34 | git submodule sync 35 | git submodule update --init --recursive 36 | 37 | ./eosio_build.sh -P -f 38 | ``` 39 | 40 | ## Configuring Node 41 | - Create data-dir folder for you node: 42 | ``` 43 | mkdir /opt/EOSmainNet 44 | ``` 45 | - Clone all files from this repo: 46 | ``` 47 | cd /opt/EOSmainNet 48 | git clone https://github.com/CryptoLions/EOS-MainNet.git ./ 49 | ``` 50 | - add execution rights 51 | ``` 52 | chmod -R 777 ./*.sh 53 | chmod -R 777 ./Wallet/*.sh 54 | ``` 55 | 56 | - If you use different data-dir folders -> edit all paths in files cleos.sh, start.sh, stop.sh, Wallet/start_wallet.sh, Wallet/stop_wallet.sh: 57 | 58 | - Edit in config.ini next parameters and uncomment it: 59 | - server address: p2p-server-address = YOUR_NODE_IP_ADDRESS:9876 60 | - your producer name: producer-name = YOUR_BP_NAME 61 | - created producer keypair: private-key = YOUR_BLOCK_SIGN_PUB_KEY=KEY:YOUR_BLOCK_SIGN_PRIV_KEY 62 | - replace p2p-peer-address list with fresh generated on monitor site: https://eosnodes.privex.io/?config=1 63 | 64 | - Open http and p2p Ports on your firewall/router 65 | - Connect your node, run 66 | ``` 67 | ./start.sh 68 | ``` 69 | - Start wallet, run 70 | ``` 71 | ./Wallet/start_wallet.sh 72 | ``` 73 | - Import your key(s) 74 | ``` 75 | ./cleos.sh wallet import 76 | ``` 77 | 78 | 79 | **First run should be with --delete-all-blocks and --genesis-json** 80 | ``` 81 | ./start.sh --delete-all-blocks --genesis-json genesis.json 82 | ``` 83 | 84 | 85 | - Check if you can access you node using link http://you_server:your_http_port/v1/chain/get_info 86 | 87 | # add bp.json with info about your node: 88 | https://github.com/eosrio/bp-info-standard 89 | 90 | # Other Tools/Examples 91 | - In scripts folder you can find examples how to register as producer, stake, vote, claimrewards, etc 92 | - You can use testnet monitor for preparing vote command: https://t.me/jungletestnet/19081 93 | - Cleos commands: 94 | 95 | Send EOS 96 | ``` 97 | ./cleos.sh transfer "1.0000 EOS" "test memo text" 98 | ``` 99 | Get Balance 100 | ``` 101 | ./cleos.sh get currency balance eosio.token 102 | ``` 103 | Create account 104 | ``` 105 | ./cleos.sh system newaccount --stake-net "1.0000 EOS" --stake-cpu "1.0000 EOS" --buy-ram-kbytes 8 106 | ``` 107 | List registered producers (-l ) 108 | ``` 109 | ./cleos.sh get table eosio eosio producers -l 100 110 | ``` 111 | List your last action (use -h to get help, do not work now) 112 | ``` 113 | ./cleos.sh get actions 114 | ``` 115 | 116 | List staked/delegated 117 | ``` 118 | ./cleos.sh system listbw 119 | ``` 120 | 121 | by: CryptoLions.io 122 | Jungle Testnet telegram channel 123 | 124 | 125 | -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- 1 | 2 | #producer-name = !!!!YOUR_BP_NAME!!!!!!!! 3 | #signature-provider = YOUR_BLOCK_SIGN_PUB_KEY=KEY:YOUR_BLOCK_SIGN_PRIV_KEY 4 | 5 | agent-name = AgentName 6 | 7 | #blocks-dir = "blocks" 8 | chain-state-db-size-mb = 65536 9 | reversible-blocks-db-size-mb = 2048 10 | contracts-console = false 11 | 12 | 13 | http-server-address = 0.0.0.0:8888 14 | p2p-listen-endpoint = 0.0.0.0:9876 15 | p2p-server-address = !!YOUR_ENDPOINT_IP_ADDRESS!!:9876 16 | 17 | 18 | http-validate-host = false 19 | verbose-http-errors = true 20 | abi-serializer-max-time-ms = 2000 21 | 22 | chain-threads = 8 23 | http-threads = 6 24 | 25 | access-control-allow-origin = * 26 | access-control-allow-headers = Origin, X-Requested-With, Content-Type, Accept 27 | # access-control-max-age = 28 | # access-control-allow-credentials = false 29 | 30 | wasm-runtime = wabt 31 | 32 | #produce-time-offset-us = 250000 33 | last-block-time-offset-us = -300000 34 | 35 | 36 | # Safely shut down node when free space remaining in the chain state database drops below this size (in MiB). (eosio::chain_plugin) 37 | chain-state-db-guard-size-mb = 128 38 | # Safely shut down node when free space remaining in the reverseible blocks database drops below this size (in MiB). (eosio::chain_plugin) 39 | reversible-blocks-db-guard-size-mb = 2 40 | 41 | p2p-max-nodes-per-host = 150 42 | 43 | # actor-whitelist = 44 | # actor-blacklist = 45 | # contract-whitelist = 46 | # contract-blacklist = 47 | # filter-on = 48 | 49 | 50 | 51 | 52 | # SSL 53 | # Filename with https private key in PEM format. Required for https (eosio::http_plugin) 54 | # https-server-address = 55 | # Filename with the certificate chain to present on https connections. PEM format. Required for https. (eosio::http_plugin) 56 | # https-certificate-chain-file = 57 | # Filename with https private key in PEM format. Required for https (eosio::http_plugin) 58 | # https-private-key-file = 59 | 60 | 61 | allowed-connection = any 62 | 63 | max-clients = 150 64 | connection-cleanup-period = 30 65 | network-version-match = 0 66 | sync-fetch-span = 2000 67 | enable-stale-production = false 68 | 69 | pause-on-startup = false 70 | max-transaction-time = 30 71 | max-irreversible-block-age = -1 72 | txn-reference-block-lag = 0 73 | 74 | plugin = eosio::chain_api_plugin 75 | plugin = eosio::history_plugin 76 | plugin = eosio::history_api_plugin 77 | plugin = eosio::chain_plugin 78 | 79 | #plugin = net_plugin 80 | #plugin = net_api_plugin 81 | 82 | 83 | #p2p-peer-address = 84 | #p2p-peer-address = 85 | #p2p-peer-address = 86 | 87 | #p2p-peer-address = 172.2.0.100:9876 88 | #p2p-peer-address = 172.2.0.200:9876 89 | 90 | #Other Pub BP nodes 91 | #p2p-peer-address = 92 | #p2p-peer-address = 93 | 94 | 95 | p2p-peer-address = bp.cryptolions.io:9876 96 | p2p-peer-address = p2p.mainnet.eospace.io:88 97 | p2p-peer-address = eu-west-nl.eosamsterdam.net:9876 98 | p2p-peer-address = p2p.mainnet.eosgermany.online:9876 99 | p2p-peer-address = 35.197.190.234:19878 100 | p2p-peer-address = mainnet.genereos.io:9876 101 | p2p-peer-address = mainnet.eospay.host:19876 102 | p2p-peer-address = 130.211.59.178:9876 103 | p2p-peer-address = 54.153.59.31:9999 104 | p2p-peer-address = 94.130.250.22:9806 105 | p2p-peer-address = peer.main.alohaeos.com:9876 106 | p2p-peer-address = peer.eosn.io:9876 107 | p2p-peer-address = prod.mainnet.eos.cybex.io:9888 108 | p2p-peer-address = p2p-1.eosnetwork.io:9876 109 | p2p-peer-address = p.jeda.one:3322 110 | p2p-peer-address = eosbattles.com:9877 111 | p2p-peer-address = 34.226.76.22:9876 112 | p2p-peer-address = mainnet.eosoasis.io:9876 113 | p2p-peer-address = node.eosflare.io:1883 114 | p2p-peer-address = mainnet.eoscalgary.io:5222 115 | p2p-peer-address = eos-p2p.worbli.io:33981 116 | p2p-peer-address = 18.188.38.175:9876 117 | p2p-peer-address = 18.221.255.38:9876 118 | p2p-peer-address = eos.staked.us:9870 119 | p2p-peer-address = peering.dutcheos.io:9876 120 | p2p-peer-address = 18.188.4.97:9876 121 | p2p-peer-address = 18.191.125.105:9876 122 | p2p-peer-address = boot.eostitan.com:9876 123 | p2p-peer-address = eosboot.chainrift.com:9876 124 | p2p-peer-address = dc1.eosemerge.io:9876 125 | p2p-peer-address = m.eosvibes.io:9876 126 | p2p-peer-address = node1.eosphere.io:9876 127 | p2p-peer-address = node2.eosphere.io:9876 128 | p2p-peer-address = 45.33.60.65:9820 129 | p2p-peer-address = peering.eosio.cr:1976 130 | p2p-peer-address = peering.eosio.cr:5418 131 | p2p-peer-address = 54.203.121.17:19866 132 | p2p-peer-address = eosnode.fi:9888 133 | p2p-peer-address = api.eosuk.io:12000 134 | p2p-peer-address = fullnode.eoslaomao.com:443 135 | p2p-peer-address = new.eoshenzhen.io:10034 136 | p2p-peer-address = peer.eosio.sg:9876 137 | p2p-peer-address = eos.nodepacific.com:9876 138 | p2p-peer-address = 18.234.6.119:80 139 | p2p-peer-address = eu1.eosdac.io:49876 140 | p2p-peer-address = br.eosrio.io:9876 141 | p2p-peer-address = p2p-public.hkeos.com:19875 142 | p2p-peer-address = node.eosmeso.io:9876 143 | p2p-peer-address = pub1.eostheworld.io:9876 144 | p2p-peer-address = 807534da.eosnodeone.io:19872 145 | p2p-peer-address = mainnet.eoseco.com:10010 146 | 147 | 148 | actor-blacklist = blacklistmee 149 | 150 | #https://eoscorearbitration.io/wp-content/uploads/2018/07/ECAF_Arbitrator_Order_2018-06-19-AO-001.pdf 151 | actor-blacklist = ge2dmmrqgene 152 | actor-blacklist = gu2timbsguge 153 | actor-blacklist = ge4tsmzvgege 154 | actor-blacklist = gezdonzygage 155 | actor-blacklist = ha4tkobrgqge 156 | actor-blacklist = ha4tamjtguge 157 | actor-blacklist = gq4dkmzzhege 158 | 159 | #https://eoscorearbitration.io/wp-content/uploads/2018/07/ECAF_Arbitrator_Order_2018-06-22-AO-002.pdf 160 | actor-blacklist = gu2teobyg4ge 161 | actor-blacklist = gq4demryhage 162 | actor-blacklist = q4dfv32fxfkx 163 | actor-blacklist = ktl2qk5h4bor 164 | actor-blacklist = haydqnbtgene 165 | actor-blacklist = g44dsojygyge 166 | actor-blacklist = guzdonzugmge 167 | actor-blacklist = ha4doojzgyge 168 | actor-blacklist = gu4damztgyge 169 | actor-blacklist = haytanjtgige 170 | actor-blacklist = exchangegdax 171 | actor-blacklist = cmod44jlp14k 172 | actor-blacklist = 2fxfvlvkil4e 173 | actor-blacklist = yxbdknr3hcxt 174 | actor-blacklist = yqjltendhyjp 175 | actor-blacklist = pm241porzybu 176 | actor-blacklist = xkc2gnxfiswe 177 | actor-blacklist = ic433gs42nky 178 | actor-blacklist = fueaji11lhzg 179 | actor-blacklist = w1ewnn4xufob 180 | actor-blacklist = ugunxsrux2a3 181 | actor-blacklist = gz3q24tq3r21 182 | actor-blacklist = u5rlltjtjoeo 183 | actor-blacklist = k5thoceysinj 184 | actor-blacklist = ebhck31fnxbi 185 | actor-blacklist = pvxbvdkces1x 186 | actor-blacklist = oucjrjjvkrom 187 | 188 | #https://eoscorearbitration.io/wp-content/uploads/2018/07/ECAF-Temporary-Freeze-Order-2018-07-13-AO-003.pdf 189 | actor-blacklist = neverlandwal 190 | actor-blacklist = tseol5n52kmo 191 | actor-blacklist = potus1111111 192 | 193 | #https://eoscorearbitration.io/wp-content/uploads/2018/07/ECAF-Order-of-Emergency-Protection-2018-07-19-AO-004.pdf 194 | actor-blacklist = craigspys211 195 | 196 | #https://eoscorearbitration.io/wp-content/uploads/2018/08/ECAF-Order-of-Emergency-Protection-2018-08-07-AO-005.pdf 197 | actor-blacklist = eosfomoplay1 198 | 199 | #https://eoscorearbitration.io/wp-content/uploads/2018/08/ECAF-Order-of-Emergency-Protection-2018-08-28-AO-006.pdf 200 | actor-blacklist = wangfuhuahua 201 | 202 | #https://eoscorearbitration.io/wp-content/uploads/2018/09/ECAF-Order-of-Emergency-Protection-2018-09-07-AO-008.pdf 203 | #https://eoscorearbitration.io/wp-content/uploads/2018/09/ECAF-Order-of-Emergency-Protection-2018-09-24-AO-010.pdf 204 | #actor-blacklist = ha4timrzguge 205 | actor-blacklist = guytqmbuhege 206 | 207 | #https://eoscorearbitration.io/wp-content/uploads/2018/09/ECAF-Order-of-Emergency-Protection-2018-09-09-AO-009.pdf 208 | actor-blacklist = huobldeposit 209 | 210 | #https://eoscorearbitration.io/wp-content/uploads/2018/09/ECAF-Order-of-Emergency-Protection-2018-09-25-AO-011.pdf 211 | actor-blacklist = gm3dcnqgenes 212 | actor-blacklist = gm34qnqrepqt 213 | actor-blacklist = gt3ftnqrrpqp 214 | actor-blacklist = gtwvtqptrpqp 215 | actor-blacklist = gm31qndrspqr 216 | actor-blacklist = lxl2atucpyos 217 | 218 | #https://eoscorearbitration.io/wp-content/uploads/2018/10/ECAF-Order-of-Emergency-Protection-2018-10-05-AO-012.pdf 219 | actor-blacklist = g4ytenbxgqge 220 | actor-blacklist = jinwen121212 221 | actor-blacklist = ha4tomztgage 222 | actor-blacklist = my1steosobag 223 | actor-blacklist = iloveyouplay 224 | actor-blacklist = eoschinaeos2 225 | actor-blacklist = eosholderkev 226 | actor-blacklist = dreams12true 227 | actor-blacklist = imarichman55 228 | 229 | #https://eoscorearbitration.io/wp-content/uploads/2018/10/ECAF-Order-of-Emergency-Protection-2018-10-05-AO-013.pdf 230 | actor-blacklist = gizdcnjyg4ge 231 | 232 | #https://eoscorearbitration.io/wp-content/uploads/2018/10/ECAF-Order-of-Emergency-Protection-2018-10-12-AO-014.pdf 233 | actor-blacklist = gyzdmmjsgige 234 | 235 | #https://eoscorearbitration.io/wp-content/uploads/2018/10/ECAF-Order-of-Emergency-Protection-2018-10-13-AO-015.pdf 236 | actor-blacklist = guzdanrugene 237 | actor-blacklist = earthsop1sys 238 | 239 | #https://eoscorearbitration.io/wp-content/uploads/2018/10/ECAF-Order-of-Emergency-Protection-2018-10-31-AO-017.pdf 240 | actor-blacklist = refundwallet 241 | actor-blacklist = jhonnywalker 242 | actor-blacklist = alibabaioeos 243 | actor-blacklist = whitegroupes 244 | actor-blacklist = 24cryptoshop 245 | actor-blacklist = minedtradeos 246 | 247 | #Manual at 2019.02.22 (MainNet gropup) 248 | actor-blacklist = newdexmobapp 249 | actor-blacklist = ftsqfgjoscma 250 | actor-blacklist = hpbcc4k42nxy 251 | actor-blacklist = 3qyty1khhkhv 252 | actor-blacklist = xzr2fbvxwtgt 253 | actor-blacklist = myqdqdj4qbge 254 | actor-blacklist = shprzailrazt 255 | actor-blacklist = qkwrmqowelyu 256 | actor-blacklist = lhjuy3gdkpq4 257 | actor-blacklist = lmfsopxpr324 258 | actor-blacklist = lcxunh51a1gt 259 | actor-blacklist = geydddsfkk5e 260 | actor-blacklist = pnsdiia1pcuy 261 | actor-blacklist = kwmvzswquqpb 262 | actor-blacklist = guagddoefdqu 263 | 264 | --------------------------------------------------------------------------------