--- tags: game-of-chains --- # Provider Chain BigDipper config ## big-dipper ### `.env` ``` NEXT_PUBLIC_GRAPHQL_URL=https://hasura.provider-explorer.goc.earthball.xyz/v1/graphql NEXT_PUBLIC_GRAPHQL_WS=wss://hasura.provider-explorer.goc.earthball.xyz/v1/graphql NEXT_PUBLIC_RPC_WEBSOCKET=wss://rpc.provider-sentry-02.goc.earthball.xyz/websocket NODE_ENV=production PORT=3001 NEXT_PUBLIC_URL=https://provider-explorer.goc.earthball.xyz NEXT_PUBLIC_CHAIN_TYPE=testnet ``` ### `src/configs/chain_config.testnet.json` ``` { "title": "Provider Block Explorer", "network": "provider", "icon": "https://i.imgur.com/0yIcvUg.jpg", "logo": { "default": "https://i.imgur.com/0yIcvUg.jpg" }, "prefix": { "consensus": "cosmosvalcons", "validator": "cosmosvaloper", "account": "cosmos" }, "genesis": { "time": "2022-11-07T12:55:47.944439477Z", "height": 1 }, "primaryTokenUnit": "uprov", "votingPowerTokenUnit": "uprov", "tokenUnits": { "uprov": { "display": "prov", "exponent": 6 } }, "extra": { "profile": true } } ``` ## bdjuno ### config.yaml ``` chain: bech32_prefix: cosmos modules: - modules - messages - auth - bank - consensus - gov - mint - slashing - staking - distribution - actions node: type: remote config: rpc: client_name: gaia address: http://provider-sentry-02.goc.earthball.xyz:28001 max_connections: 20 grpc: address: http://provider-sentry-02.goc.earthball.xyz:28003 insecure: true parsing: workers: 5 listen_new_blocks: true parse_old_blocks: true parse_genesis: true start_height: 1 fast_sync: false genesis_file_path: /home/bigdipper/.bdjuno/genesis.json average_block_time: 5s database: name: bdjuno host: 127.0.0.1 port: 5432 user: bdjuno password: fh8XZju6cwDRRryt schema: public max_open_connections: 10 max_idle_connections: 10 partition_size: 100000 partition_batch: 1000 logging: level: debug format: text telemetry: port: 5000 pruning: keep_recent: 100 keep_every: 500 interval: 10 pricefeed: tokens: - name: PROV units: - denom: uatom exponent: 0 - denom: prov exponent: 6 price_id: cosmos actions: port: 3000 ``` ### genesis file See [GitHub repo](https://github.com/hyphacoop/ics-testnets/blob/main/game-of-chains-2022/provider/provider-genesis.json).