diff --git a/src/config/web3/cosmos/testnet/index.ts b/src/config/web3/cosmos/testnet/index.ts index bb275ba12..00e144ac7 100644 --- a/src/config/web3/cosmos/testnet/index.ts +++ b/src/config/web3/cosmos/testnet/index.ts @@ -27,6 +27,7 @@ import { secret } from "./secret"; import { sei } from "./sei"; import { teritori } from "./teritori"; import { terra } from "./terra"; +import { warden } from "./warden"; import { xpla } from "./xpla"; export const testnetChains: CosmosChain[] = [ @@ -59,4 +60,5 @@ export const testnetChains: CosmosChain[] = [ haqq, celestia, provenance, + warden, ]; diff --git a/src/config/web3/cosmos/testnet/warden.ts b/src/config/web3/cosmos/testnet/warden.ts new file mode 100644 index 000000000..9eafd3450 --- /dev/null +++ b/src/config/web3/cosmos/testnet/warden.ts @@ -0,0 +1,54 @@ +import { Bech32Address } from "@keplr-wallet/cosmos"; + +import { CosmosChain } from "../interface"; + +export const warden: CosmosChain = { + rpc: "https://rpc.buenavista.wardenprotocol.org/", + rest: "https://api.buenavista.wardenprotocol.org/", + chainId: "buenavista-1", + chainName: "Warden Protocol Buenavista Testnet", + chainIdentifier: "buenavista-1", + bech32Config: Bech32Address.defaultBech32Config("warden"), + bip44: { + coinType: 118, + }, + currencies: [ + { + coinDecimals: 6, + coinDenom: "WARD", + coinMinimalDenom: "uward", + coinImageUrl: + "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/alfama/uward.png", + }, + ], + feeCurrencies: [ + { + coinDecimals: 6, + coinDenom: "WARD", + coinMinimalDenom: "uward", + coinImageUrl: + "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/alfama/uward.png", + gasPriceStep: { + average: 0.025, + high: 0.03, + low: 0.005, + }, + }, + ], + stakeCurrency: { + coinDecimals: 6, + coinDenom: "WARD", + coinMinimalDenom: "uward", + coinImageUrl: + "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/alfama/uward.png", + }, + features: [ + "stargate", + "ibc-transfer", + "cosmwasm", + "no-legacy-stdTx", + "ibc-go", + ], + chainToAxelarChannelId: "channel-1", + explorer: "", // TODO: add explorer +};