diff --git a/.github/workflows/build-artifact.yaml b/.github/workflows/build-artifact.yaml index a8aead34aa..a12953f21c 100644 --- a/.github/workflows/build-artifact.yaml +++ b/.github/workflows/build-artifact.yaml @@ -30,8 +30,13 @@ jobs: - name: Update config run: | if [ ${{ matrix.env }} != "mainnet" ]; then cp ${{ matrix.cfg }} chains/mainnet/sge.json; fi - cat chains/mainnet/sge.json + rm chains/testnet/* + cp chains/mainnet/sge.json chains/testnet/sge.json + - name: Remove Google Analytics + run: | + sed -i '25,40d' index.html + - name: Install run: yarn install --ignore-engines diff --git a/chains/README.md b/chains/README.md index dbb910de04..7b651cfadd 100644 --- a/chains/README.md +++ b/chains/README.md @@ -1,10 +1,10 @@ # Directory Layout -** if you want to list your blockchain on ping.pub, please submit your configuration on https://github.com/ping-pub/ping.pub.git ** +** if you want to list your blockhain on ping.pub, please submit your configure on https://github.com/ping-pub/ping.pub.git ** - Submit configs for mainnet, go to https://github.com/ping-pub/explorer/tree/master/chains/mainnet -- Submit configs for testnet, go to https://github.com/ping-pub/explorer/tree/master/chains/testnet, these configs will be enabled when you visit the domain that starts with `testnet.*`, for example `https://testnet.ping.pub` +- Submit configs for testnet, go to https://github.com/ping-pub/explorer/tree/master/chains/testnet, thess configs will be enabled when you visit the domain starts withs `testnet.*`, for example `https://testnet.ping.pub` # Sample of Config diff --git a/chains/testnet/sge.json b/chains/testnet/sge.json index 3b9b23f96b..0ed609176a 100644 --- a/chains/testnet/sge.json +++ b/chains/testnet/sge.json @@ -2,14 +2,12 @@ "chain_name": "sge", "alias": "sge", "api": [ - "https://api.testnet.sgenetwork.io", - "https://sge.api.t.stavr.tech", - "https://testnet-sge-rest.cosmos-apis.com/" + { "provider": "sge-network", "address": "https://lcd-1317.testnet.sgenetwork.io"}, + { "provider": "stavr.tech", "address": "https://sge.api.t.stavr.tech" } ], "rpc": [ - "https://rpc.testnet.sgenetwork.io", - "https://sge.rpc.t.stavr.tech", - "https://testnet-sge-rpc.cosmos-apis.com/" + { "provider": "sge-network", "address": "https://lcd-26657.testnet.sgenetwork.io" }, + { "provider": "stavr.tech", "address": "https://sge.rpc.t.stavr.tech" } ], "snapshot_provider": "", "addr_prefix": "sge", diff --git a/chains/testnet/sge_stage.json b/chains/testnet/sge_stage.json index f2c2a06323..b4005d5a62 100644 --- a/chains/testnet/sge_stage.json +++ b/chains/testnet/sge_stage.json @@ -2,10 +2,10 @@ "chain_name": "sge", "alias": "sge", "api": [ - "https://api.staging.sgenetwork.io" + { "provider": "sge-network", "address": "https://lcd-1317.staging.sgenetwork.io"} ], "rpc": [ - "https://rpc.staging.sgenetwork.io" + { "provider": "sge-network", "address": "https://lcd-26657.staging.sgenetwork.io"} ], "snapshot_provider": "", "addr_prefix": "sge",