├── 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 ├── 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="/data/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="/data/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="/data/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="/data/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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Welcome to the EOS MainNet 2 | 3 | Based on tag: mainnet-1.4.2 4 | Network Monitor and Voting command prepering tool: EOSnetworkMonitor.io 5 | 6 | # Auto Installer script 7 | - in progress 8 | 9 | 10 | 26 | 27 | # Manual installation 28 | 29 | ## Install EOS 30 | 31 | ``` 32 | mkdir /home/eos-sources 33 | cd /home/eos-sources 34 | 35 | git clone https://github.com/EOS-Mainnet/eos.git --recursive 36 | cd eos 37 | 38 | git checkout mainnet-1.4.2 39 | git submodule update --init --recursive 40 | 41 | ./eosio_build.sh -s "EOS" 42 | ``` 43 | 44 | ## Update EOS 45 | 46 | ``` 47 | mkdir /home/eos-sources 48 | cd /home/eos-sources/eos 49 | 50 | git checkout mainnet-1.4.2 51 | git submodule update --init --recursive 52 | 53 | ./eosio_build.sh -s "EOS" 54 | ``` 55 | 56 | ## Configuring Node 57 | - Create data-dir folder for you node: 58 | ``` 59 | mkdir /data/EOSmainNet 60 | ``` 61 | - Clone all files from this repo: 62 | ``` 63 | cd /data/EOSmainNet 64 | git clone https://github.com/xiaoping378/EOS-MainNet.git ./ 65 | ``` 66 | - add execution rights 67 | ``` 68 | chmod -R 777 ./*.sh 69 | chmod -R 777 ./Wallet/*.sh 70 | ``` 71 | 72 | - 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: 73 | 74 | - Edit in config.ini next parameters and uncomment it: 75 | - server address: p2p-server-address = YOUR_NODE_IP_ADDRESS:9876 76 | - your producer name: producer-name = YOUR_BP_NAME 77 | - created producer keypair: private-key = YOUR_BLOCK_SIGN_PUB_KEY=KEY:YOUR_BLOCK_SIGN_PRIV_KEY 78 | - replace p2p-peer-address list with fresh generated on monitor site: https://eosnodes.privex.io/?config=1 79 | 80 | - Open http and p2p Ports on your firewall/router 81 | - Connect your node, run 82 | ``` 83 | ./start.sh 84 | ``` 85 | - Start wallet, run 86 | ``` 87 | ./Wallet/start_wallet.sh 88 | ``` 89 | - Import your key(s) 90 | ``` 91 | ./cleos.sh wallet import 92 | ``` 93 | 94 | 95 | **First run should be with --delete-all-blocks and --genesis-json** 96 | ``` 97 | ./start.sh --delete-all-blocks --genesis-json genesis.json 98 | ``` 99 | 100 | 101 | - Check if you can access you node using link http://you_server:your_http_port/v1/chain/get_info 102 | 103 | # add bp.json with info about your node: 104 | https://github.com/eosrio/bp-info-standard 105 | 106 | # Other Tools/Examples 107 | - In scripts folder you can find examples how to register as producer, stake, vote, claimrewards, etc 108 | - You can use testnet monitor for preparing vote command: https://t.me/jungletestnet/19081 109 | - Cleos commands: 110 | 111 | Send EOS 112 | ``` 113 | ./cleos.sh transfer "1.0000 EOS" "test memo text" 114 | ``` 115 | Get Balance 116 | ``` 117 | ./cleos.sh get currency balance eosio.token 118 | ``` 119 | Create account 120 | ``` 121 | ./cleos.sh system newaccount --stake-net "1.0000 EOS" --stake-cpu "1.0000 EOS" --buy-ram-kbytes 8 122 | ``` 123 | List registered producers (-l ) 124 | ``` 125 | ./cleos.sh get table eosio eosio producers -l 100 126 | ``` 127 | List your last action (use -h to get help, do not work now) 128 | ``` 129 | ./cleos.sh get actions 130 | ``` 131 | 132 | List staked/delegated 133 | ``` 134 | ./cleos.sh system listbw 135 | ``` 136 | 137 | by: CryptoLions.io 138 | Jungle Testnet telegram channel 139 | 140 | 141 | -------------------------------------------------------------------------------- /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 = eosPlay 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 = 47.52.170.24:9876 16 | #bnet-endpoint = !!YOUR_ENDPOINT_IP_ADDRESS!!:9875 17 | 18 | http-validate-host = false 19 | verbose-http-errors = true 20 | abi-serializer-max-time-ms = 2000 21 | 22 | access-control-allow-origin = * 23 | # access-control-allow-headers = 24 | # access-control-max-age = 25 | #access-control-allow-credentials = false 26 | 27 | wasm-runtime = wabt 28 | 29 | #p2p-max-nodes-per-host = 4 30 | 31 | # actor-whitelist = 32 | # actor-blacklist = 33 | # contract-whitelist = 34 | # contract-blacklist = 35 | # filter-on = 36 | 37 | 38 | 39 | 40 | # SSL 41 | # Filename with https private key in PEM format. Required for https (eosio::http_plugin) 42 | # https-server-address = 43 | # Filename with the certificate chain to present on https connections. PEM format. Required for https. (eosio::http_plugin) 44 | # https-certificate-chain-file = 45 | # Filename with https private key in PEM format. Required for https (eosio::http_plugin) 46 | # https-private-key-file = 47 | 48 | 49 | allowed-connection = any 50 | 51 | max-clients = 150 52 | connection-cleanup-period = 30 53 | network-version-match = 0 54 | sync-fetch-span = 2000 55 | enable-stale-production = false 56 | 57 | max-implicit-request = 1500 58 | pause-on-startup = false 59 | max-irreversible-block-age = -1 60 | txn-reference-block-lag = 0 61 | 62 | plugin = eosio::chain_api_plugin 63 | plugin = eosio::history_plugin 64 | plugin = eosio::history_api_plugin 65 | plugin = eosio::chain_plugin 66 | plugin = eosio::bnet_plugin 67 | 68 | #plugin = net_plugin 69 | #plugin = net_api_plugin 70 | 71 | 72 | #bnet-connect = 73 | #bnet-connect = 74 | #bnet-connect = 75 | 76 | #p2p-peer-address = 77 | #p2p-peer-address = 78 | #p2p-peer-address = 79 | 80 | #p2p-peer-address = 172.2.0.100:9876 81 | #p2p-peer-address = 172.2.0.200:9876 82 | 83 | #Other Pub BP nodes 84 | #p2p-peer-address = 85 | #p2p-peer-address = 86 | 87 | 88 | p2p-peer-address = 185.253.188.1:19876 89 | p2p-peer-address = 807534da.eosnodeone.io:19872 90 | p2p-peer-address = api-full1.eoseoul.io:9876 91 | p2p-peer-address = api-full2.eoseoul.io:9876 92 | p2p-peer-address = api.eosuk.io:12000 93 | p2p-peer-address = boot.eostitan.com:9876 94 | p2p-peer-address = bp.antpool.com:443 95 | p2p-peer-address = bp.cryptolions.io:9876 96 | p2p-peer-address = bp.eos.miami:13975 97 | p2p-peer-address = bp.eosbeijing.one:8080 98 | p2p-peer-address = bp.libertyblock.io:9800 99 | p2p-peer-address = br.eosrio.io:9876 100 | p2p-peer-address = eos-seed-de.privex.io:9876 101 | p2p-peer-address = eos.nodepacific.com:9876 102 | p2p-peer-address = eos.staked.us:9870 103 | p2p-peer-address = eosapi.blockmatrix.network:13546 104 | p2p-peer-address = eu-west-nl.eosamsterdam.net:9876 105 | p2p-peer-address = eu1.eosdac.io:49876 106 | p2p-peer-address = fn001.eossv.org:443 107 | p2p-peer-address = fullnode.eoslaomao.com:443 108 | p2p-peer-address = m.eosvibes.io:9876 109 | p2p-peer-address = mainnet.eosarabia.org:3571 110 | p2p-peer-address = mainnet.eoscalgary.io:5222 111 | p2p-peer-address = mainnet.eospay.host:19876 112 | p2p-peer-address = mars.fnp2p.eosbixin.com:443 113 | p2p-peer-address = node.eosflare.io:1883 114 | p2p-peer-address = node1.eoscannon.io:59876 115 | p2p-peer-address = node1.eosnewyork.io:6987 116 | p2p-peer-address = node2.eosnewyork.io:6987 117 | p2p-peer-address = p.jeda.one:3322 118 | p2p-peer-address = p2p.eos.bitspace.no:9876 119 | p2p-peer-address = p2p.eosio.cr:1976 120 | p2p-peer-address = p2p.meet.one:9876 121 | p2p-peer-address = p2p.one.eosdublin.io:9876 122 | p2p-peer-address = p2p.two.eosdublin.io:9876 123 | p2p-peer-address = p2p.unlimitedeos.com:15555 124 | p2p-peer-address = peer.eosjrr.io:9876 125 | p2p-peer-address = peer.eosn.io:9876 126 | p2p-peer-address = peer.main.alohaeos.com:9876 127 | p2p-peer-address = peer1.mainnet.helloeos.com.cn:80 128 | p2p-peer-address = peer2.mainnet.helloeos.com.cn:80 129 | p2p-peer-address = peering.mainnet.eoscanada.com:9876 130 | p2p-peer-address = peering1.mainnet.eosasia.one:80 131 | p2p-peer-address = peering2.mainnet.eosasia.one:80 132 | p2p-peer-address = pub0.eosys.io:6637 133 | p2p-peer-address = pub1.eosys.io:6637 134 | p2p-peer-address = publicnode.cypherglass.com:9876 135 | p2p-peer-address = seed1.greymass.com:9876 136 | p2p-peer-address = seed2.greymass.com:9876 137 | 138 | actor-blacklist = blacklistmee 139 | 140 | #https://eoscorearbitration.io/wp-content/uploads/2018/07/ECAF_Arbitrator_Order_2018-06-19-AO-001.pdf 141 | actor-blacklist = ge2dmmrqgene 142 | actor-blacklist = gu2timbsguge 143 | actor-blacklist = ge4tsmzvgege 144 | actor-blacklist = gezdonzygage 145 | actor-blacklist = ha4tkobrgqge 146 | actor-blacklist = ha4tamjtguge 147 | actor-blacklist = gq4dkmzzhege 148 | 149 | #https://eoscorearbitration.io/wp-content/uploads/2018/07/ECAF_Arbitrator_Order_2018-06-22-AO-002.pdf 150 | actor-blacklist = gu2teobyg4ge 151 | actor-blacklist = gq4demryhage 152 | actor-blacklist = q4dfv32fxfkx 153 | actor-blacklist = ktl2qk5h4bor 154 | actor-blacklist = haydqnbtgene 155 | actor-blacklist = g44dsojygyge 156 | actor-blacklist = guzdonzugmge 157 | actor-blacklist = ha4doojzgyge 158 | actor-blacklist = gu4damztgyge 159 | actor-blacklist = haytanjtgige 160 | actor-blacklist = exchangegdax 161 | actor-blacklist = cmod44jlp14k 162 | actor-blacklist = 2fxfvlvkil4e 163 | actor-blacklist = yxbdknr3hcxt 164 | actor-blacklist = yqjltendhyjp 165 | actor-blacklist = pm241porzybu 166 | actor-blacklist = xkc2gnxfiswe 167 | actor-blacklist = ic433gs42nky 168 | actor-blacklist = fueaji11lhzg 169 | actor-blacklist = w1ewnn4xufob 170 | actor-blacklist = ugunxsrux2a3 171 | actor-blacklist = gz3q24tq3r21 172 | actor-blacklist = u5rlltjtjoeo 173 | actor-blacklist = k5thoceysinj 174 | actor-blacklist = ebhck31fnxbi 175 | actor-blacklist = pvxbvdkces1x 176 | actor-blacklist = oucjrjjvkrom 177 | 178 | #https://eoscorearbitration.io/wp-content/uploads/2018/07/ECAF-Temporary-Freeze-Order-2018-07-13-AO-003.pdf 179 | actor-blacklist = neverlandwal 180 | actor-blacklist = tseol5n52kmo 181 | actor-blacklist = potus1111111 182 | 183 | #https://eoscorearbitration.io/wp-content/uploads/2018/07/ECAF-Order-of-Emergency-Protection-2018-07-19-AO-004.pdf 184 | actor-blacklist = craigspys211 185 | 186 | #https://eoscorearbitration.io/wp-content/uploads/2018/08/ECAF-Order-of-Emergency-Protection-2018-08-07-AO-005.pdf 187 | actor-blacklist = eosfomoplay1 188 | 189 | #https://eoscorearbitration.io/wp-content/uploads/2018/08/ECAF-Order-of-Emergency-Protection-2018-08-28-AO-006.pdf 190 | actor-blacklist = wangfuhuahua 191 | 192 | #https://eoscorearbitration.io/wp-content/uploads/2018/09/ECAF-Order-of-Emergency-Protection-2018-09-07-AO-008.pdf 193 | #https://eoscorearbitration.io/wp-content/uploads/2018/09/ECAF-Order-of-Emergency-Protection-2018-09-24-AO-010.pdf 194 | #actor-blacklist = ha4timrzguge 195 | actor-blacklist = guytqmbuhege 196 | 197 | #https://eoscorearbitration.io/wp-content/uploads/2018/09/ECAF-Order-of-Emergency-Protection-2018-09-09-AO-009.pdf 198 | actor-blacklist = huobldeposit 199 | 200 | #https://eoscorearbitration.io/wp-content/uploads/2018/09/ECAF-Order-of-Emergency-Protection-2018-09-25-AO-011.pdf 201 | actor-blacklist = gm3dcnqgenes 202 | actor-blacklist = gm34qnqrepqt 203 | actor-blacklist = gt3ftnqrrpqp 204 | actor-blacklist = gtwvtqptrpqp 205 | actor-blacklist = gm31qndrspqr 206 | actor-blacklist = lxl2atucpyos 207 | 208 | #https://eoscorearbitration.io/wp-content/uploads/2018/10/ECAF-Order-of-Emergency-Protection-2018-10-05-AO-012.pdf 209 | actor-blacklist = g4ytenbxgqge 210 | actor-blacklist = jinwen121212 211 | actor-blacklist = ha4tomztgage 212 | actor-blacklist = my1steosobag 213 | actor-blacklist = iloveyouplay 214 | actor-blacklist = eoschinaeos2 215 | actor-blacklist = eosholderkev 216 | actor-blacklist = dreams12true 217 | actor-blacklist = imarichman55 218 | 219 | #https://eoscorearbitration.io/wp-content/uploads/2018/10/ECAF-Order-of-Emergency-Protection-2018-10-05-AO-013.pdf 220 | actor-blacklist = gizdcnjyg4ge 221 | 222 | #https://eoscorearbitration.io/wp-content/uploads/2018/10/ECAF-Order-of-Emergency-Protection-2018-10-12-AO-014.pdf 223 | actor-blacklist = gyzdmmjsgige 224 | 225 | #https://eoscorearbitration.io/wp-content/uploads/2018/10/ECAF-Order-of-Emergency-Protection-2018-10-13-AO-015.pdf 226 | actor-blacklist = guzdanrugene 227 | actor-blacklist = earthsop1sys 228 | 229 | #https://eoscorearbitration.io/wp-content/uploads/2018/10/ECAF-Order-of-Emergency-Protection-2018-10-31-AO-017.pdf 230 | actor-blacklist = refundwallet 231 | actor-blacklist = jhonnywalker 232 | actor-blacklist = alibabaioeos 233 | actor-blacklist = whitegroupes 234 | actor-blacklist = 24cryptoshop 235 | actor-blacklist = minedtradeos 236 | 237 | --------------------------------------------------------------------------------