├── torii-1 ├── gentx │ └── .gitkeep └── penultimate_genesis.json ├── README.md ├── .github └── workflows │ └── main.yml ├── LICENSE └── augusta-1 └── genesis.json /torii-1/gentx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # testnets 2 | This repository contains archway testnets 3 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | # This is a basic workflow to help you get started with Actions 2 | 3 | name: CI 4 | 5 | on: 6 | pull_request: 7 | branches: 8 | - main 9 | 10 | jobs: 11 | review_job: 12 | runs-on: ubuntu-latest 13 | name: A job to validate the PR 14 | steps: 15 | - name: Invocation of testnet review action 16 | id: review 17 | uses: parthdesai/action-testnet-review-pr@master 18 | env: 19 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 20 | with: 21 | requiredGenesisModification: true 22 | genTxDirectory: 1/2 23 | genesisFilePath: genesis.json 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Archway Network 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 | -------------------------------------------------------------------------------- /augusta-1/genesis.json: -------------------------------------------------------------------------------- 1 | { 2 | "genesis_time": "2022-02-22T16:47:52.048381037Z", 3 | "chain_id": "augusta-1", 4 | "initial_height": "1", 5 | "consensus_params": { 6 | "block": { 7 | "max_bytes": "22020096", 8 | "max_gas": "-1", 9 | "time_iota_ms": "1000" 10 | }, 11 | "evidence": { 12 | "max_age_num_blocks": "100000", 13 | "max_age_duration": "172800000000000", 14 | "max_bytes": "1048576" 15 | }, 16 | "validator": { 17 | "pub_key_types": [ 18 | "ed25519" 19 | ] 20 | }, 21 | "version": {} 22 | }, 23 | "app_hash": "", 24 | "app_state": { 25 | "auth": { 26 | "params": { 27 | "max_memo_characters": "256", 28 | "tx_sig_limit": "7", 29 | "tx_size_cost_per_byte": "10", 30 | "sig_verify_cost_ed25519": "590", 31 | "sig_verify_cost_secp256k1": "1000" 32 | }, 33 | "accounts": [ 34 | { 35 | "@type": "/cosmos.auth.v1beta1.BaseAccount", 36 | "address": "archway1rk4ah83q65dzrzyc6lqx7zkyngdfehqgduf0sl" 37 | }, 38 | { 39 | "@type": "/cosmos.auth.v1beta1.BaseAccount", 40 | "address": "archway1qkqk40nj70fgh82k59nx32353hyh0mh76hw9yq" 41 | } 42 | ] 43 | }, 44 | "authz": {}, 45 | "bank": { 46 | "params": { 47 | "send_enabled": [], 48 | "default_send_enabled": true 49 | }, 50 | "balances": [ 51 | { 52 | "address": "archway1qkqk40nj70fgh82k59nx32353hyh0mh76hw9yq", 53 | "coins": [ 54 | { 55 | "denom": "uaugust", 56 | "amount": "100000000000000000" 57 | } 58 | ] 59 | }, 60 | { 61 | "address": "archway1rk4ah83q65dzrzyc6lqx7zkyngdfehqgduf0sl", 62 | "coins": [ 63 | { 64 | "denom": "uaugust", 65 | "amount": "10000000000000000000" 66 | } 67 | ] 68 | } 69 | ], 70 | "supply": [ 71 | { 72 | "denom": "uaugust", 73 | "amount": "10100000000000000000" 74 | } 75 | ], 76 | "denom_metadata": [] 77 | }, 78 | "capability": { 79 | "index": "1", 80 | "owners": [] 81 | }, 82 | "crisis": { 83 | "constant_fee": { 84 | "denom": "uaugust", 85 | "amount": "1000" 86 | } 87 | }, 88 | "distribution": { 89 | "params": { 90 | "community_tax": "0.020000000000000000", 91 | "base_proposer_reward": "0.010000000000000000", 92 | "bonus_proposer_reward": "0.040000000000000000", 93 | "withdraw_addr_enabled": true 94 | }, 95 | "fee_pool": { 96 | "community_pool": [] 97 | }, 98 | "delegator_withdraw_infos": [], 99 | "outstanding_rewards": [], 100 | "validator_accumulated_commissions": [], 101 | "validator_historical_rewards": [], 102 | "validator_current_rewards": [], 103 | "delegator_starting_infos": [], 104 | "validator_slash_events": [] 105 | }, 106 | "evidence": { 107 | "evidence": [] 108 | }, 109 | "feegrant": {}, 110 | "gastracker": {}, 111 | "genutil": { 112 | "gen_txs": [ 113 | { 114 | "body": { 115 | "messages": [ 116 | { 117 | "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", 118 | "description": { 119 | "moniker": "tendermint", 120 | "identity": "", 121 | "website": "", 122 | "security_contact": "", 123 | "details": "" 124 | }, 125 | "commission": { 126 | "rate": "0.100000000000000000", 127 | "max_rate": "0.200000000000000000", 128 | "max_change_rate": "0.010000000000000000" 129 | }, 130 | "min_self_delegation": "1", 131 | "delegator_address": "archway1rk4ah83q65dzrzyc6lqx7zkyngdfehqgduf0sl", 132 | "validator_address": "archwayvaloper1rk4ah83q65dzrzyc6lqx7zkyngdfehqgdcqdak", 133 | "pubkey": { 134 | "@type": "/cosmos.crypto.ed25519.PubKey", 135 | "key": "CbscgY5pVOghLUDsBuAisG+QAEbN9LpUF/orJ62PyWo=" 136 | }, 137 | "value": { 138 | "denom": "uaugust", 139 | "amount": "1000000" 140 | } 141 | } 142 | ], 143 | "memo": "13968ecad7dacf66808d21b2555750d95302752f@10.60.9.132:26656", 144 | "timeout_height": "0", 145 | "extension_options": [], 146 | "non_critical_extension_options": [] 147 | }, 148 | "auth_info": { 149 | "signer_infos": [ 150 | { 151 | "public_key": { 152 | "@type": "/cosmos.crypto.secp256k1.PubKey", 153 | "key": "A87ImYzHUYWh0uvzUTeBvN/zjwHBVTbM2ifg0/1OR6+P" 154 | }, 155 | "mode_info": { 156 | "single": { 157 | "mode": "SIGN_MODE_DIRECT" 158 | } 159 | }, 160 | "sequence": "0" 161 | } 162 | ], 163 | "fee": { 164 | "amount": [], 165 | "gas_limit": "200000", 166 | "payer": "", 167 | "granter": "" 168 | } 169 | }, 170 | "signatures": [ 171 | "6atuy9vH5IU9VOprSZ/wjhWTC4CnrYbYsfN6uQfsCYVPRVFhI72oqJ2CeM0YKpgENbuysp5sMILXEEgdKFHdLA==" 172 | ] 173 | } 174 | ] 175 | }, 176 | "gov": { 177 | "starting_proposal_id": "1", 178 | "deposit_params": { 179 | "min_deposit": [ 180 | { 181 | "denom": "uaugust", 182 | "amount": "10000000" 183 | } 184 | ], 185 | "max_deposit_period": "172800s" 186 | }, 187 | "voting_params": { 188 | "voting_period": "172800s" 189 | }, 190 | "tally_params": { 191 | "quorum": "0.334000000000000000", 192 | "threshold": "0.500000000000000000", 193 | "veto_threshold": "0.334000000000000000" 194 | } 195 | }, 196 | "ibc": { 197 | "client_genesis": { 198 | "clients": [], 199 | "clients_consensus": [], 200 | "params": { 201 | "allowed_clients": [ 202 | "06-solomachine", 203 | "07-tendermint" 204 | ] 205 | } 206 | }, 207 | "connection_genesis": { 208 | "connections": [], 209 | "client_connection_paths": [], 210 | "params": { 211 | "max_expected_time_per_block": "30000000000" 212 | } 213 | }, 214 | "channel_genesis": { 215 | "channels": [], 216 | "acknowledgements": [], 217 | "commitments": [], 218 | "receipts": [], 219 | "send_sequences": [], 220 | "recv_sequences": [], 221 | "ack_sequences": [] 222 | } 223 | }, 224 | "mint": { 225 | "minter": { 226 | "inflation": "0.130000000000000000", 227 | "annual_provisions": "0.000000000000000000" 228 | }, 229 | "params": { 230 | "mint_denom": "uaugust", 231 | "inflation_rate_change": "0.130000000000000000", 232 | "inflation_max": "0.200000000000000000", 233 | "inflation_min": "0.070000000000000000", 234 | "goal_bonded": "0.670000000000000000", 235 | "blocks_per_year": "6311520" 236 | } 237 | }, 238 | "params": null, 239 | "slashing": { 240 | "params": { 241 | "signed_blocks_window": "100", 242 | "min_signed_per_window": "0.500000000000000000", 243 | "downtime_jail_duration": "600s", 244 | "slash_fraction_double_sign": "0.050000000000000000", 245 | "slash_fraction_downtime": "0.010000000000000000" 246 | }, 247 | "signing_infos": [], 248 | "missed_blocks": [] 249 | }, 250 | "staking": { 251 | "params": { 252 | "unbonding_time": "1814400s", 253 | "max_validators": 100, 254 | "max_entries": 7, 255 | "historical_entries": 10000, 256 | "bond_denom": "uaugust" 257 | }, 258 | "last_total_power": "0" 259 | }, 260 | "transfer": { 261 | "port_id": "transfer", 262 | "denom_traces": [], 263 | "params": { 264 | "send_enabled": true, 265 | "receive_enabled": true 266 | } 267 | }, 268 | "upgrade": {}, 269 | "vesting": {}, 270 | "wasm": { 271 | "params": { 272 | "code_upload_access": { 273 | "permission": "Everybody" 274 | }, 275 | "instantiate_default_permission": "Everybody", 276 | "max_wasm_code_size": "1228800" 277 | } 278 | } 279 | } 280 | } 281 | -------------------------------------------------------------------------------- /torii-1/penultimate_genesis.json: -------------------------------------------------------------------------------- 1 | { 2 | "genesis_time": "2022-04-10T13:33:34.377281821Z", 3 | "chain_id": "torii-1", 4 | "initial_height": "1", 5 | "consensus_params": { 6 | "block": { 7 | "max_bytes": "2000000", 8 | "max_gas": "2000000", 9 | "time_iota_ms": "1000" 10 | }, 11 | "evidence": { 12 | "max_age_num_blocks": "100000", 13 | "max_age_duration": "172800000000000", 14 | "max_bytes": "1048576" 15 | }, 16 | "validator": { 17 | "pub_key_types": [ 18 | "ed25519" 19 | ] 20 | }, 21 | "version": {} 22 | }, 23 | "app_hash": "", 24 | "app_state": { 25 | "auth": { 26 | "params": { 27 | "max_memo_characters": "256", 28 | "tx_sig_limit": "7", 29 | "tx_size_cost_per_byte": "10", 30 | "sig_verify_cost_ed25519": "590", 31 | "sig_verify_cost_secp256k1": "1000" 32 | }, 33 | "accounts": [ 34 | { 35 | "@type": "/cosmos.auth.v1beta1.BaseAccount", 36 | "address": "archway1ntu5fmt2c6djgyxszefftpd89n7dma3p6nrtgq", 37 | "pub_key": null, 38 | "account_number": "0", 39 | "sequence": "0" 40 | }, 41 | { 42 | "@type": "/cosmos.auth.v1beta1.BaseAccount", 43 | "address": "archway1ea327s9scrxz0yjy34f6n8pydjumu93ucuqcug", 44 | "pub_key": null, 45 | "account_number": "0", 46 | "sequence": "0" 47 | }, 48 | { 49 | "@type": "/cosmos.auth.v1beta1.BaseAccount", 50 | "address": "archway1atwx2cs5fep6gr92vlrkqmjmtukaqerewgyaec", 51 | "pub_key": null, 52 | "account_number": "0", 53 | "sequence": "0" 54 | }, 55 | { 56 | "@type": "/cosmos.auth.v1beta1.BaseAccount", 57 | "address": "archway1yvhz3d0744ge3ayweakaj867cf6vyuhxmctrp2", 58 | "pub_key": null, 59 | "account_number": "0", 60 | "sequence": "0" 61 | }, 62 | { 63 | "@type": "/cosmos.auth.v1beta1.BaseAccount", 64 | "address": "archway1j2t0yfqf5467cn53s6zjue859jsmn7966t50v2", 65 | "pub_key": null, 66 | "account_number": "0", 67 | "sequence": "0" 68 | }, 69 | { 70 | "@type": "/cosmos.auth.v1beta1.BaseAccount", 71 | "address": "archway1fhg3x3achdy55kcxnktdqzarvsagn75hrfrtry", 72 | "pub_key": null, 73 | "account_number": "0", 74 | "sequence": "0" 75 | }, 76 | { 77 | "@type": "/cosmos.auth.v1beta1.BaseAccount", 78 | "address": "archway16kspwgyd43xj5xm73c8j90v2rqra6pa5gfx0ck", 79 | "pub_key": null, 80 | "account_number": "0", 81 | "sequence": "0" 82 | }, 83 | { 84 | "@type": "/cosmos.auth.v1beta1.BaseAccount", 85 | "address": "archway1fe6tvr8p6p7rmtgmyj85df0l5le0ds7d5d52ms", 86 | "pub_key": null, 87 | "account_number": "0", 88 | "sequence": "0" 89 | }, 90 | { 91 | "@type": "/cosmos.auth.v1beta1.BaseAccount", 92 | "address": "archway188gxl0puff90zj59zmwclqa36dffl9z0zwjncp", 93 | "pub_key": null, 94 | "account_number": "0", 95 | "sequence": "0" 96 | }, 97 | { 98 | "@type": "/cosmos.auth.v1beta1.BaseAccount", 99 | "address": "archway1h2v83q9dh483wq006yj3ejexq402dqh6spml3e", 100 | "pub_key": null, 101 | "account_number": "0", 102 | "sequence": "0" 103 | } 104 | ] 105 | }, 106 | "authz": { 107 | "authorization": [] 108 | }, 109 | "bank": { 110 | "params": { 111 | "send_enabled": [], 112 | "default_send_enabled": true 113 | }, 114 | "balances": [ 115 | { 116 | "address": "archway1yvhz3d0744ge3ayweakaj867cf6vyuhxmctrp2", 117 | "coins": [ 118 | { 119 | "denom": "utorii", 120 | "amount": "134000000000000" 121 | } 122 | ] 123 | }, 124 | { 125 | "address": "archway188gxl0puff90zj59zmwclqa36dffl9z0zwjncp", 126 | "coins": [ 127 | { 128 | "denom": "utorii", 129 | "amount": "33333333333333" 130 | } 131 | ] 132 | }, 133 | { 134 | "address": "archway1fhg3x3achdy55kcxnktdqzarvsagn75hrfrtry", 135 | "coins": [ 136 | { 137 | "denom": "utorii", 138 | "amount": "33333333333334" 139 | } 140 | ] 141 | }, 142 | { 143 | "address": "archway1fe6tvr8p6p7rmtgmyj85df0l5le0ds7d5d52ms", 144 | "coins": [ 145 | { 146 | "denom": "utorii", 147 | "amount": "33333333333333" 148 | } 149 | ] 150 | }, 151 | { 152 | "address": "archway1j2t0yfqf5467cn53s6zjue859jsmn7966t50v2", 153 | "coins": [ 154 | { 155 | "denom": "utorii", 156 | "amount": "134000000000000" 157 | } 158 | ] 159 | }, 160 | { 161 | "address": "archway1ntu5fmt2c6djgyxszefftpd89n7dma3p6nrtgq", 162 | "coins": [ 163 | { 164 | "denom": "utorii", 165 | "amount": "134000000000000" 166 | } 167 | ] 168 | }, 169 | { 170 | "address": "archway1ea327s9scrxz0yjy34f6n8pydjumu93ucuqcug", 171 | "coins": [ 172 | { 173 | "denom": "utorii", 174 | "amount": "134000000000000" 175 | } 176 | ] 177 | }, 178 | { 179 | "address": "archway16kspwgyd43xj5xm73c8j90v2rqra6pa5gfx0ck", 180 | "coins": [ 181 | { 182 | "denom": "utorii", 183 | "amount": "100000000000000" 184 | } 185 | ] 186 | }, 187 | { 188 | "address": "archway1atwx2cs5fep6gr92vlrkqmjmtukaqerewgyaec", 189 | "coins": [ 190 | { 191 | "denom": "utorii", 192 | "amount": "134000000000000" 193 | } 194 | ] 195 | } 196 | ], 197 | "supply": [ 198 | { 199 | "denom": "utorii", 200 | "amount": "870000000000000" 201 | } 202 | ], 203 | "denom_metadata": [ 204 | { 205 | "description": "The native token for Torii incentivized testnet", 206 | "denom_units": [ 207 | { 208 | "denom": "utorii", 209 | "exponent": 0, 210 | "aliases": [ 211 | "microtorii" 212 | ] 213 | }, 214 | { 215 | "denom": "mtorii", 216 | "exponent": 3, 217 | "aliases": [ 218 | "millitorii" 219 | ] 220 | }, 221 | { 222 | "denom": "torii", 223 | "exponent": 6, 224 | "aliases": [ 225 | "torii" 226 | ] 227 | } 228 | ], 229 | "base": "utorii", 230 | "display": "torii", 231 | "name": "Torii Token", 232 | "symbol": "Torii" 233 | } 234 | ] 235 | }, 236 | "capability": { 237 | "index": "1", 238 | "owners": [] 239 | }, 240 | "crisis": { 241 | "constant_fee": { 242 | "denom": "utorii", 243 | "amount": "1000" 244 | } 245 | }, 246 | "distribution": { 247 | "params": { 248 | "community_tax": "0.020000000000000000", 249 | "base_proposer_reward": "0.010000000000000000", 250 | "bonus_proposer_reward": "0.040000000000000000", 251 | "withdraw_addr_enabled": true 252 | }, 253 | "fee_pool": { 254 | "community_pool": [] 255 | }, 256 | "delegator_withdraw_infos": [], 257 | "previous_proposer": "", 258 | "outstanding_rewards": [], 259 | "validator_accumulated_commissions": [], 260 | "validator_historical_rewards": [], 261 | "validator_current_rewards": [], 262 | "delegator_starting_infos": [], 263 | "validator_slash_events": [] 264 | }, 265 | "evidence": { 266 | "evidence": [] 267 | }, 268 | "feegrant": { 269 | "allowances": [] 270 | }, 271 | "gastracker": {}, 272 | "genutil": { 273 | "gen_txs": [] 274 | }, 275 | "gov": { 276 | "starting_proposal_id": "1", 277 | "deposits": [], 278 | "votes": [], 279 | "proposals": [], 280 | "deposit_params": { 281 | "min_deposit": [ 282 | { 283 | "denom": "utorii", 284 | "amount": "10000000" 285 | } 286 | ], 287 | "max_deposit_period": "172800s" 288 | }, 289 | "voting_params": { 290 | "voting_period": "172800s" 291 | }, 292 | "tally_params": { 293 | "quorum": "0.334000000000000000", 294 | "threshold": "0.500000000000000000", 295 | "veto_threshold": "0.334000000000000000" 296 | } 297 | }, 298 | "ibc": { 299 | "client_genesis": { 300 | "clients": [], 301 | "clients_consensus": [], 302 | "clients_metadata": [], 303 | "params": { 304 | "allowed_clients": [ 305 | "06-solomachine", 306 | "07-tendermint" 307 | ] 308 | }, 309 | "create_localhost": false, 310 | "next_client_sequence": "0" 311 | }, 312 | "connection_genesis": { 313 | "connections": [], 314 | "client_connection_paths": [], 315 | "next_connection_sequence": "0", 316 | "params": { 317 | "max_expected_time_per_block": "30000000000" 318 | } 319 | }, 320 | "channel_genesis": { 321 | "channels": [], 322 | "acknowledgements": [], 323 | "commitments": [], 324 | "receipts": [], 325 | "send_sequences": [], 326 | "recv_sequences": [], 327 | "ack_sequences": [], 328 | "next_channel_sequence": "0" 329 | } 330 | }, 331 | "mint": { 332 | "minter": { 333 | "inflation": "0.130000000000000000", 334 | "annual_provisions": "0.000000000000000000" 335 | }, 336 | "params": { 337 | "mint_denom": "utorii", 338 | "inflation_rate_change": "0.130000000000000000", 339 | "inflation_max": "0.200000000000000000", 340 | "inflation_min": "0.070000000000000000", 341 | "goal_bonded": "0.670000000000000000", 342 | "blocks_per_year": "6311520" 343 | } 344 | }, 345 | "params": null, 346 | "slashing": { 347 | "params": { 348 | "signed_blocks_window": "100", 349 | "min_signed_per_window": "0.500000000000000000", 350 | "downtime_jail_duration": "600s", 351 | "slash_fraction_double_sign": "0.050000000000000000", 352 | "slash_fraction_downtime": "0.010000000000000000" 353 | }, 354 | "signing_infos": [], 355 | "missed_blocks": [] 356 | }, 357 | "staking": { 358 | "params": { 359 | "unbonding_time": "21600s", 360 | "max_validators": 130, 361 | "max_entries": 7, 362 | "historical_entries": 10000, 363 | "bond_denom": "utorii" 364 | }, 365 | "last_total_power": "0", 366 | "last_validator_powers": [], 367 | "validators": [], 368 | "delegations": [], 369 | "unbonding_delegations": [], 370 | "redelegations": [], 371 | "exported": false 372 | }, 373 | "transfer": { 374 | "port_id": "transfer", 375 | "denom_traces": [], 376 | "params": { 377 | "send_enabled": true, 378 | "receive_enabled": true 379 | } 380 | }, 381 | "upgrade": {}, 382 | "vesting": {}, 383 | "wasm": { 384 | "params": { 385 | "code_upload_access": { 386 | "permission": "Everybody", 387 | "address": "" 388 | }, 389 | "instantiate_default_permission": "Everybody", 390 | "max_wasm_code_size": "1228800" 391 | }, 392 | "codes": [], 393 | "contracts": [], 394 | "sequences": [], 395 | "gen_msgs": [] 396 | } 397 | } 398 | } 399 | --------------------------------------------------------------------------------