diff --git a/.github/workflows/trailing-commas.yml b/.github/workflows/trailing-commas.yml new file mode 100644 index 00000000..6a1c710d --- /dev/null +++ b/.github/workflows/trailing-commas.yml @@ -0,0 +1,25 @@ +# trailing-commas verifies that *.txt files do not contain lines with trailing commas. +name: trailing-commas +on: pull_request +jobs: + check-trailing-commas: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Ensure no trailing commas in *.txt files + run: | + # Get list of .txt files + FILES=$(git ls-files | grep "\.txt$") + + # Check each file for trailing commas and fail if any are found + for FILE in $FILES; do + if grep -qE ",$" "$FILE"; then + echo "Trailing comma found in $FILE" + exit 1 + fi + done + + echo "No trailing commas found in .txt files." diff --git a/.github/workflows/validate-validator-github.yml b/.github/workflows/validate-validator-github.yml deleted file mode 100644 index c30513bb..00000000 --- a/.github/workflows/validate-validator-github.yml +++ /dev/null @@ -1,164 +0,0 @@ -name: Validate GitHub User - -on: - pull_request: - -jobs: - validate_user: - runs-on: ubuntu-latest - permissions: - pull-requests: write - env: - VALIDATOR_LIST: ( - "ybstaked", - "nodebreaker0-0", - "silviugae", - "tiagocmachado", - "EdouardLvdl", - "gle1pn1r", - "creeea", - "veeloup", - "trader-payne", - "cryptovestor21", - "activenodes", - "staking4all", - "ilhanu", - "Suleymann85", - "ivandiazperez", - "wainach", - "Cumulo-pro", - "santosdios", - "0x-Fury", - "okannako", - "Ryabina-io", - "Gunter038", - "nodestake", - "GPvalidator", - "y3v63n", - "redref", - "jim-counter", - "travellingsoldier85", - "kooltek68", - "qubelabsio", - "DasRasyo", - "chichi13", - "jmc000", - "JejomStark", - "kj89", - "kjnodes", - "neoprom", - "mkaczanowski", - "RishiSid", - "kooltek68", - "travellingsoldier85", - "clock-workorange", - "kinrokinro", - "evgeny-garanin", - "bonsfi", - "calintatar1", - "krisboit", - "carameleon", - "quantumcore1", - "gaia", - "packetstracer", - "daniel-ck89", - "staked_blaise", - "yash_bhut", - "jmo_oo", - "kennystaked", - "AlexToTheMoon", - "richard-stakingcabin", - "vincent-stakingcabin", - "shivlim", - "BlackBlocks-io", - "WayneWayner", - "rfunduk", - "victorfrancax1", - "jennyhys", - "llPorZall", - "pops-one", - "yelllowsin", - "rooiie", - "stakemepro", - "pciavald", - "Daeinar", - "koenmtb1", - "kobigurk", - "Brightlystake", - "mabalaru", - "dantanasescu", - "imperator-co", - "easy2stake", - "suntzu93", - "spidey-169", - "larry0x", - "AviaOne", - "nodersteam", - "HoytRen", - "Aderks", - "matilote", - "ayushvtf", - "silviu@bwarelabs.com", - "mihai.ciuciu@bwarelabs.com", - "kim201212", - "puneetfinoa", - "aonif", - "bo-everstake", - "upnodedev", - "curlycrypto184", - "JoseCT-HS", - "legg", - "jamescorbett", - "frannovo", - "MilosTodorovic", - "Chainode", - "neulerfzco", - "maxzonder", - "Northa", - "Validatus-com", - "b-harvest", - "dshyionak-bd", - "macunha1", - "JackPMallon", - "fkbenjamin", - "86b", - "SimonKraus", - "ecov773", - "mgl2150", - "sibuser", - "sjors-lemniscap", - "zheli", - "MSevey", - "liamsi", - "YazzyYaz", - "evan-forbes", - "qubelabsio", - "sysrex", - "mindstyle85", - "jcstein", - "mojtaba-esk", - "eugea", - ) - steps: - - uses: actions/checkout@v4 - - name: Get PR author - id: author - run: echo "author=$(jq -r '.pull_request.user.login' $GITHUB_EVENT_PATH)" >> $GITHUB_OUTPUT - - name: Check if user is valid env - id: check_user_env - run: echo "valid=${{ contains(env.VALIDATOR_LIST, steps.author.outputs.author) }}" >> $GITHUB_OUTPUT - - name: Add comment if user is not valid - if: steps.check_user_env.outputs.valid == 'false' - uses: actions/github-script@v6 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - script: | - github.rest.issues.createComment({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: '@MSevey The PR was submitted by someone not on the GitHub user validator list.' - }) - - name: Fail CI if user is not valid - if: steps.check_user_env.outputs.valid == 'false' - run: exit 1 diff --git a/README.md b/README.md index b178fdd0..eb88e353 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,13 @@ Please refer to the [Celestia Docs](https://docs.celestia.org) for guides on run | Name | Type | Chain ID | Configs | |----------|---------|--------------|----------------------------| | Mocha | Testnet | `mocha-4` | [mocha-4](./mocha-4) | -| Arabica | Testnet | `arabica-10` | [arabica-10](./arabica-10) | -| Celestia | Mainnet | `celestia` | [celestia](./celestia) | +| Arabica | Testnet | `arabica-11` | [arabica-11](./arabica-11) | +| Celestia | Mainnet Beta | `celestia` | [celestia](./celestia) | ## Software versions The celestia-app and celestia-node versions in use on each network are visible on this [Grafana dashboard](https://celestia.grafana.net/public-dashboards/5d14d96e44f04664bb0c44267e5d645c). + +## Public Dashboards + +DA Full and Light nodes might have troubles connecting to the networks, so you can checkout this [Grafana dashboard](https://celestia.grafana.net/public-dashboards/a10eff0043bb4bf0839004e2746e2bc6) to see health/uptime status of DA Bootstrappers (now `celestia` network only). diff --git a/arabica-11/genesis.json b/arabica-11/genesis.json new file mode 100644 index 00000000..c00e0d00 --- /dev/null +++ b/arabica-11/genesis.json @@ -0,0 +1,306 @@ +{ + "genesis_time": "2024-01-02T12:18:46.936662592Z", + "chain_id": "arabica-11", + "initial_height": "1", + "consensus_params": { + "block": { + "max_bytes": "1974272", + "max_gas": "-1", + "time_iota_ms": "1" + }, + "evidence": { + "max_age_num_blocks": "120961", + "max_age_duration": "1814400000000000", + "max_bytes": "1048576" + }, + "validator": { + "pub_key_types": [ + "ed25519" + ] + }, + "version": { + "app_version": "1" + } + }, + "app_hash": "", + "app_state": { + "auth": { + "params": { + "max_memo_characters": "256", + "tx_sig_limit": "7", + "tx_size_cost_per_byte": "10", + "sig_verify_cost_ed25519": "590", + "sig_verify_cost_secp256k1": "1000" + }, + "accounts": [ + { + "@type": "/cosmos.auth.v1beta1.BaseAccount", + "address": "celestia12zs7e3n8pjd8y8ex0cyv67ethv30mekgqu665r", + "pub_key": null, + "account_number": "0", + "sequence": "0" + } + ] + }, + "authz": { + "authorization": [] + }, + "bank": { + "params": { + "send_enabled": [], + "default_send_enabled": true + }, + "balances": [ + { + "address": "celestia12zs7e3n8pjd8y8ex0cyv67ethv30mekgqu665r", + "coins": [ + { + "denom": "utia", + "amount": "1000000000000000" + } + ] + } + ], + "supply": [ + { + "denom": "utia", + "amount": "1000000000000000" + } + ], + "denom_metadata": [ + { + "description": "The native token of the Celestia network.", + "denom_units": [ + { + "denom": "utia", + "exponent": 0, + "aliases": [ + "microtia" + ] + }, + { + "denom": "TIA", + "exponent": 6, + "aliases": [] + } + ], + "base": "utia", + "display": "TIA", + "name": "TIA", + "symbol": "TIA", + "uri": "", + "uri_hash": "" + } + ] + }, + "blob": { + "params": { + "gas_per_blob_byte": 8, + "gov_max_square_size": "64" + } + }, + "capability": { + "index": "1", + "owners": [] + }, + "crisis": { + "constant_fee": { + "denom": "utia", + "amount": "1000" + } + }, + "distribution": { + "params": { + "community_tax": "0.020000000000000000", + "base_proposer_reward": "0.000000000000000000", + "bonus_proposer_reward": "0.000000000000000000", + "withdraw_addr_enabled": true + }, + "fee_pool": { + "community_pool": [] + }, + "delegator_withdraw_infos": [], + "previous_proposer": "", + "outstanding_rewards": [], + "validator_accumulated_commissions": [], + "validator_historical_rewards": [], + "validator_current_rewards": [], + "delegator_starting_infos": [], + "validator_slash_events": [] + }, + "evidence": { + "evidence": [] + }, + "feegrant": { + "allowances": [] + }, + "genutil": { + "gen_txs": [ + { + "body": { + "messages": [ + { + "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", + "description": { + "moniker": "consensus-validator-1-0", + "identity": "", + "website": "", + "security_contact": "", + "details": "" + }, + "commission": { + "rate": "0.100000000000000000", + "max_rate": "0.200000000000000000", + "max_change_rate": "0.010000000000000000" + }, + "min_self_delegation": "1", + "delegator_address": "celestia12zs7e3n8pjd8y8ex0cyv67ethv30mekgqu665r", + "validator_address": "celestiavaloper12zs7e3n8pjd8y8ex0cyv67ethv30mekg9rcrz9", + "pubkey": { + "@type": "/cosmos.crypto.ed25519.PubKey", + "key": "EEj12cprQQ879EJGHL5GB190tlAxUzhjACxUxOgJ8iU=" + }, + "value": { + "denom": "utia", + "amount": "100000000000000" + } + } + ], + "memo": "827583022cc6ce65cf762115642258f937c954cd@100.64.7.6:26656", + "timeout_height": "0", + "extension_options": [], + "non_critical_extension_options": [] + }, + "auth_info": { + "signer_infos": [ + { + "public_key": { + "@type": "/cosmos.crypto.secp256k1.PubKey", + "key": "AyJq13zdVvBc4sHiqsxdwmZuhu/+7jp5qybynJAUP4Ve" + }, + "mode_info": { + "single": { + "mode": "SIGN_MODE_DIRECT" + } + }, + "sequence": "0" + } + ], + "fee": { + "amount": [], + "gas_limit": "210000", + "payer": "", + "granter": "" + }, + "tip": null + }, + "signatures": [ + "6q8Jk9+XzvN5XAHW/Q0qN6RXIHi/pARxfWjROkDKxvMzcNO/ym04tc3qQB4GpWFX6S7V+IyH5JG0leh+NqcHUA==" + ] + } + ] + }, + "gov": { + "starting_proposal_id": "1", + "deposits": [], + "votes": [], + "proposals": [], + "deposit_params": { + "min_deposit": [ + { + "denom": "utia", + "amount": "10000000000" + } + ], + "max_deposit_period": "604800s" + }, + "voting_params": { + "voting_period": "604800s" + }, + "tally_params": { + "quorum": "0.334000000000000000", + "threshold": "0.500000000000000000", + "veto_threshold": "0.334000000000000000" + } + }, + "ibc": { + "client_genesis": { + "clients": [], + "clients_consensus": [], + "clients_metadata": [], + "params": { + "allowed_clients": [ + "06-solomachine", + "07-tendermint" + ] + }, + "create_localhost": false, + "next_client_sequence": "0" + }, + "connection_genesis": { + "connections": [], + "client_connection_paths": [], + "next_connection_sequence": "0", + "params": { + "max_expected_time_per_block": "75000000000" + } + }, + "channel_genesis": { + "channels": [], + "acknowledgements": [], + "commitments": [], + "receipts": [], + "send_sequences": [], + "recv_sequences": [], + "ack_sequences": [], + "next_channel_sequence": "0" + } + }, + "mint": { + "bond_denom": "utia" + }, + "params": null, + "qgb": { + "params": { + "data_commitment_window": "400" + } + }, + "slashing": { + "params": { + "signed_blocks_window": "5000", + "min_signed_per_window": "0.750000000000000000", + "downtime_jail_duration": "60s", + "slash_fraction_double_sign": "0.020000000000000000", + "slash_fraction_downtime": "0.000000000000000000" + }, + "signing_infos": [], + "missed_blocks": [] + }, + "staking": { + "params": { + "unbonding_time": "1814400s", + "max_validators": 100, + "max_entries": 7, + "historical_entries": 10000, + "bond_denom": "utia", + "min_commission_rate": "0.050000000000000000" + }, + "last_total_power": "0", + "last_validator_powers": [], + "validators": [], + "delegations": [], + "unbonding_delegations": [], + "redelegations": [], + "exported": false + }, + "transfer": { + "port_id": "transfer", + "denom_traces": [], + "params": { + "send_enabled": true, + "receive_enabled": true + } + }, + "vesting": {} + } +} diff --git a/arabica-11/peers.txt b/arabica-11/peers.txt new file mode 100644 index 00000000..208140b4 --- /dev/null +++ b/arabica-11/peers.txt @@ -0,0 +1,4 @@ +827583022cc6ce65cf762115642258f937c954cd@validator-1.celestia-arabica-11.com:26656 +74e42b39f512f844492ff09e30af23d54579b7bc@validator-2.celestia-arabica-11.com:26656 +00d577159b2eb1f524ef9c37cb389c020a2c38d2@validator-3.celestia-arabica-11.com:26656 +b2871b6dc2e18916d07264af0e87c456c2bba04f@validator-4.celestia-arabica-11.com:26656 diff --git a/celestia/Cumulo.txt b/celestia/Cumulo.txt new file mode 100644 index 00000000..c717d5c5 --- /dev/null +++ b/celestia/Cumulo.txt @@ -0,0 +1 @@ +e92c1f9c189018d4b94899f99ee24d0b90f6b9b5@217.160.39.214:26656 diff --git a/celestia/peers.txt b/celestia/peers.txt index 4de0af7c..a33d3e57 100644 --- a/celestia/peers.txt +++ b/celestia/peers.txt @@ -15,7 +15,7 @@ dd603ca5470c0f195dea38d1f938b9e43a729a47@162.19.170.154:26656 994574dc373fc7552d5fb2616ca9d40654760a91@141.164.42.9:16400 d364357f55e37a038d9dbd143448ea792bb8edcf@15.235.115.156:16400 624257ef1a8b6e2d39ac13ed3e3e16963fbb54ea@149.102.156.193:26656 -e92c1f9c189018d4b94899f99ee24d0b90f6b9b5@217.160.39.214:26656 +d5fafee95503bb76719f5c2849f3fe0be46e758c@217.160.39.214:26656 45779d388b18ad48d98c6ad54f35e95fe2a3b35a@165.22.30.175:26656 4ebfc1fac7a646105956ee563ea0d760e3099269@celestia-peer1.easy2stake.com:26756 87af580078c80c630625db2360b3dc19483d29cd@185.182.194.163:26656 @@ -69,3 +69,4 @@ a86cfe5a22e73ff0c9ceec388e9b52bf8355efdd@85.239.233.57:2000 b833d0cac06e9831550f3273de21792cec23211d@78.46.21.248:26656 76455257d6ae848d17b6e324b1b278c01f4b769d@celestia-peer.freshstaking.com:34656 62b11589e64b4cef9f7202a2fd012937b1522745@celestia-mainnet.spidey.services:26603 +b8c78f8edb68486ed07d7c34fc694be4fc37cd34@144.217.71.152:26656 diff --git a/devnet-2/celestia-app/peers.txt b/devnet-2/celestia-app/peers.txt index d5ed36dc..c2e7e154 100644 --- a/devnet-2/celestia-app/peers.txt +++ b/devnet-2/celestia-app/peers.txt @@ -1,10 +1,10 @@ -0ddf1877a66384199c41c6bfaa4d5edd1bbee128@95.216.223.149:26666, -1d6a3c3d9ffc828b926f95592e15b1b59b5d8175@51.210.33.125:26656, -ceef453e27c50e1b5fa4c522c5310ebea6937b37@65.108.76.39:26656, -7ae1c8c0a14d34c241cfcbd63ea601716e0dbddc@3.83.69.129:26656, -1f6cfa7ccffb649eaca82d659a376d8859737b46@188.166.228.113:26656, -06818dc3a3ab60a4c38f14fc0ad1246d0e95e3bb@5.161.54.161:26656, -4dbee83453420c37eeb632cd6c02ee4c53c38570@65.108.61.136:26656, -5ed12ed092257a194c43f3fad2fea548d9f29fc8@168.119.229.69:26656, -54296dca10da2d6e992f3f21da41a655a739802a@209.145.60.201:26656, +0ddf1877a66384199c41c6bfaa4d5edd1bbee128@95.216.223.149:26666 +1d6a3c3d9ffc828b926f95592e15b1b59b5d8175@51.210.33.125:26656 +ceef453e27c50e1b5fa4c522c5310ebea6937b37@65.108.76.39:26656 +7ae1c8c0a14d34c241cfcbd63ea601716e0dbddc@3.83.69.129:26656 +1f6cfa7ccffb649eaca82d659a376d8859737b46@188.166.228.113:26656 +06818dc3a3ab60a4c38f14fc0ad1246d0e95e3bb@5.161.54.161:26656 +4dbee83453420c37eeb632cd6c02ee4c53c38570@65.108.61.136:26656 +5ed12ed092257a194c43f3fad2fea548d9f29fc8@168.119.229.69:26656 +54296dca10da2d6e992f3f21da41a655a739802a@209.145.60.201:26656 a4ae84f9f0e2397c886d9de22b9b90d98ede99a1@49.12.111.32:26656 diff --git a/diagrams/BridgeNodes.png b/diagrams/BridgeNodes.png deleted file mode 100644 index f8d25a36..00000000 Binary files a/diagrams/BridgeNodes.png and /dev/null differ diff --git a/diagrams/LightNodes.png b/diagrams/LightNodes.png deleted file mode 100644 index b7bd4056..00000000 Binary files a/diagrams/LightNodes.png and /dev/null differ diff --git a/diagrams/NetworkOverview.png b/diagrams/NetworkOverview.png deleted file mode 100644 index 7d7809da..00000000 Binary files a/diagrams/NetworkOverview.png and /dev/null differ diff --git a/mamaki/bootstrap-peers.txt b/mamaki/bootstrap-peers.txt index 6e5620d9..48ce3f4d 100644 --- a/mamaki/bootstrap-peers.txt +++ b/mamaki/bootstrap-peers.txt @@ -1,2 +1,2 @@ -a46bbdb81e66c950e3cdbe5ee748a2d6bdb185dd@161.97.168.77:26656, +a46bbdb81e66c950e3cdbe5ee748a2d6bdb185dd@161.97.168.77:26656 f0c58d904dec824605ac36114db28f1bf84f6ea3@144.76.112.238:26656 diff --git a/mamaki/peers.txt b/mamaki/peers.txt index 3ff4e19f..4c71f78c 100644 --- a/mamaki/peers.txt +++ b/mamaki/peers.txt @@ -1,32 +1,32 @@ -e4429e99609c8c009969b0eb73c973bff33712f9@141.94.73.39:43656, -09263a4168de6a2aaf7fef86669ddfe4e2d004f6@142.132.209.229:26656, -13d8abce0ff9565ed223c5e4b9906160816ee8fa@94.62.146.145:36656, -72b34325513863152269e781d9866d1ec4d6a93a@65.108.194.40:26676, -322542cec82814d8903de2259b1d4d97026bcb75@51.178.133.224:26666, -5273f0deefa5f9c2d0a3bbf70840bb44c65d835c@80.190.129.50:49656, -7145da826bbf64f06aa4ad296b850fd697a211cc@176.57.189.212:26656, -5a4c337189eed845f3ece17f88da0d94c7eb2f9c@209.126.84.147:26656, -ec072065bd4c6126a5833c97c8eb2d4382db85be@88.99.249.251:26656, -cd1524191300d6354d6a322ab0bca1d7c8ddfd01@95.216.223.149:26656, -2fd76fae32f587eceb266dce19053b20fce4e846@207.154.220.138:26656, -1d6a3c3d9ffc828b926f95592e15b1b59b5d8175@135.181.56.56:26656, -fe2025284ad9517ee6e8b027024cf4ae17e320c9@198.244.164.11:26656, -fcff172744c51684aaefc6fd3433eae275a2f31b@159.203.18.242:26656, -f7b68a491bae4b10dbab09bb3a875781a01274a5@65.108.199.79:20356, -6c076056fc80a813b26e24ba8d28fa374cd72777@149.102.153.197:26656, -180378bab87c9cecea544eb406fcd8fcd2cbc21b@168.119.122.78:26656, -88fa96d09a595a1208968727819367bd2fe8eabe@164.70.120.56:26656, -84133cfde6e5fcaf5915436d56b3eef1d1996d17@45.132.245.56:26656, -42b331adaa9ece4c455b92f0d26e3382e46d43f0@161.97.180.20:36656, -c8c0456a5174ab082591a9466a6e0cb15c915a65@194.233.85.193:26656, -6a62bf1f489a5231ddc320a2607ab2595558db75@154.12.240.49:26656, -d0b19e4d133441fd41b4d74ac8de2138313ad49e@195.201.41.137:26656, -bf199295d4c142ebf114232613d4796e6d81a8d0@159.69.110.238:26656, -a46bbdb81e66c950e3cdbe5ee748a2d6bdb185dd@161.97.168.77:26656, -831cd61b04ac95155f101723b851af53460d4d65@65.108.217.169:26656, -550ab50ad0df01408928a3479e643286a47b4fc9@46.4.213.197:26656, -43e9da043318a4ea0141259c17fcb06ecff816af@141.94.73.39:43656, -45d0154bea2e0bbffec343894072f5feab19d242@65.108.71.92:43656, -2e4084408b641a90c299a499c32874f0ab0f2956@65.108.44.149:22656, -de6ba05f3ed583a12c396c182e5126ed65a32514@154.53.44.239:26656, -d6fb487ff10d9878449beaa89007da15ec43057f@194.163.137.209:26656 \ No newline at end of file +e4429e99609c8c009969b0eb73c973bff33712f9@141.94.73.39:43656 +09263a4168de6a2aaf7fef86669ddfe4e2d004f6@142.132.209.229:26656 +13d8abce0ff9565ed223c5e4b9906160816ee8fa@94.62.146.145:36656 +72b34325513863152269e781d9866d1ec4d6a93a@65.108.194.40:26676 +322542cec82814d8903de2259b1d4d97026bcb75@51.178.133.224:26666 +5273f0deefa5f9c2d0a3bbf70840bb44c65d835c@80.190.129.50:49656 +7145da826bbf64f06aa4ad296b850fd697a211cc@176.57.189.212:26656 +5a4c337189eed845f3ece17f88da0d94c7eb2f9c@209.126.84.147:26656 +ec072065bd4c6126a5833c97c8eb2d4382db85be@88.99.249.251:26656 +cd1524191300d6354d6a322ab0bca1d7c8ddfd01@95.216.223.149:26656 +2fd76fae32f587eceb266dce19053b20fce4e846@207.154.220.138:26656 +1d6a3c3d9ffc828b926f95592e15b1b59b5d8175@135.181.56.56:26656 +fe2025284ad9517ee6e8b027024cf4ae17e320c9@198.244.164.11:26656 +fcff172744c51684aaefc6fd3433eae275a2f31b@159.203.18.242:26656 +f7b68a491bae4b10dbab09bb3a875781a01274a5@65.108.199.79:20356 +6c076056fc80a813b26e24ba8d28fa374cd72777@149.102.153.197:26656 +180378bab87c9cecea544eb406fcd8fcd2cbc21b@168.119.122.78:26656 +88fa96d09a595a1208968727819367bd2fe8eabe@164.70.120.56:26656 +84133cfde6e5fcaf5915436d56b3eef1d1996d17@45.132.245.56:26656 +42b331adaa9ece4c455b92f0d26e3382e46d43f0@161.97.180.20:36656 +c8c0456a5174ab082591a9466a6e0cb15c915a65@194.233.85.193:26656 +6a62bf1f489a5231ddc320a2607ab2595558db75@154.12.240.49:26656 +d0b19e4d133441fd41b4d74ac8de2138313ad49e@195.201.41.137:26656 +bf199295d4c142ebf114232613d4796e6d81a8d0@159.69.110.238:26656 +a46bbdb81e66c950e3cdbe5ee748a2d6bdb185dd@161.97.168.77:26656 +831cd61b04ac95155f101723b851af53460d4d65@65.108.217.169:26656 +550ab50ad0df01408928a3479e643286a47b4fc9@46.4.213.197:26656 +43e9da043318a4ea0141259c17fcb06ecff816af@141.94.73.39:43656 +45d0154bea2e0bbffec343894072f5feab19d242@65.108.71.92:43656 +2e4084408b641a90c299a499c32874f0ab0f2956@65.108.44.149:22656 +de6ba05f3ed583a12c396c182e5126ed65a32514@154.53.44.239:26656 +d6fb487ff10d9878449beaa89007da15ec43057f@194.163.137.209:26656 diff --git a/mocha-3/peers.txt b/mocha-3/peers.txt index 0b9a80e8..29b94aaf 100644 --- a/mocha-3/peers.txt +++ b/mocha-3/peers.txt @@ -1,2 +1,2 @@ -ec11f3be74010b78882de2cbd170d7ad4458d8ac@157.245.250.63:26656, +ec11f3be74010b78882de2cbd170d7ad4458d8ac@157.245.250.63:26656 daf2cecee2bd7f1b3bf94839f993f807c6b15fbf@celestia-testnet-peer.itrocket.net:11656 diff --git a/mocha/peers.txt b/mocha/peers.txt index 059e00a3..a3b0f823 100644 --- a/mocha/peers.txt +++ b/mocha/peers.txt @@ -1,7 +1,7 @@ -eaa763cde89fcf5a8fe44274a5ee3ce24bce2c5b@64.227.18.169:26656, -0d0f0e4a149b50a96207523a5408611dae2796b6@198.199.82.109:26656, -c2870ce12cfb08c4ff66c9ad7c49533d2bd8d412@178.170.47.171:26656, -1afcd97b0bf289700378e18b45dc1f927917bba0@65.109.92.79:11656, -eaa763cde89fcf5a8fe44274a5ee3ce24bce2c5b@64.227.18.169:26656, -0d0f0e4a149b50a96207523a5408611dae2796b6@198.199.82.109:26656, +eaa763cde89fcf5a8fe44274a5ee3ce24bce2c5b@64.227.18.169:26656 +0d0f0e4a149b50a96207523a5408611dae2796b6@198.199.82.109:26656 +c2870ce12cfb08c4ff66c9ad7c49533d2bd8d412@178.170.47.171:26656 +1afcd97b0bf289700378e18b45dc1f927917bba0@65.109.92.79:11656 +eaa763cde89fcf5a8fe44274a5ee3ce24bce2c5b@64.227.18.169:26656 +0d0f0e4a149b50a96207523a5408611dae2796b6@198.199.82.109:26656 c2870ce12cfb08c4ff66c9ad7c49533d2bd8d412@178.170.47.171:26656 diff --git a/mocha/seeds.txt b/mocha/seeds.txt index 09f952c1..96bcefc0 100644 --- a/mocha/seeds.txt +++ b/mocha/seeds.txt @@ -1,2 +1,2 @@ -8084e73b70dbe7fba3602be586de45a516012e6f@144.76.112.238:26656, +8084e73b70dbe7fba3602be586de45a516012e6f@144.76.112.238:26656 9aa8a73ea9364aa3cf7806d4dd25b6aed88d8152@celestia.seed.mzonder.com:11156