add androma testnet

This commit is contained in:
Polkachu 2022-09-29 08:57:56 -07:00
parent a129da309b
commit 224499957a
3 changed files with 21 additions and 1 deletions

BIN
public/logos/androma.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -0,0 +1,20 @@
{
"chain_name": "androma",
"coingecko": "",
"api": ["https://androma-testnet-api.polkachu.com"],
"rpc": ["https://androma-testnet-rpc.polkachu.com"],
"sdk_version": "0.46.1",
"coin_type": "118",
"min_tx_fee": "8000",
"addr_prefix": "andr",
"logo": "/logos/androma.png",
"assets": [
{
"base": "uandr",
"symbol": "ANDR",
"exponent": "6",
"coingecko_id": "",
"logo": "/logos/androma.png"
}
]
}

View File

@ -12,7 +12,7 @@ import { toHex } from '@cosmjs/encoding'
let chains = {}
let configs = require.context('../../chains/mainnet', false, /\.json$/)
if (isTestnet()) {
if (true) {
configs = require.context('../../chains/testnet', false, /\.json$/)
}