Skip to content

Commit

Permalink
feat: add warden to testnet (#477)
Browse files Browse the repository at this point in the history
  • Loading branch information
npty authored Jun 11, 2024
1 parent 3d149d9 commit 0ae49cd
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/config/web3/cosmos/testnet/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = [
Expand Down Expand Up @@ -59,4 +60,5 @@ export const testnetChains: CosmosChain[] = [
haqq,
celestia,
provenance,
warden,
];
54 changes: 54 additions & 0 deletions src/config/web3/cosmos/testnet/warden.ts
Original file line number Diff line number Diff line change
@@ -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
};

0 comments on commit 0ae49cd

Please sign in to comment.