Skip to content

Commit

Permalink
feat: add devnet amplifier config
Browse files Browse the repository at this point in the history
  • Loading branch information
npty committed Nov 8, 2024
1 parent 0e16072 commit c3af408
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,18 @@ const devnetConfigs: EnvironmentConfigs = {
axelarscanUrl: "",
wssStatus: "",
};
const devnetAmplifierConfigs: EnvironmentConfigs = {
resourceUrl: "https://nest-server-testnet.axelar.dev",
axelarRpcUrl: "http://devnet-amplifier.axelar.dev:26657",
axelarLcdUrl: "http://devnet-amplifier.axelar.dev:1317",
axelarGMPApiUrl: "https://devnet-amplifier.api.gmp.axelarscan.io",
axelarscanBaseApiUrl: "https://devnet-amplifier.api.axelarscan.io",
depositServiceUrl: "",
recoveryApiUrl: "",
axelarCrosschainApiUrl: "",
axelarscanUrl: "https://devnet-amplifier.axelarscan.io",
wssStatus: "",
};
const testnetConfigs: EnvironmentConfigs = {
resourceUrl: "https://nest-server-testnet.axelar.dev",
axelarRpcUrl: "https://testnet.rpc.axelar.dev/chain/axelar",
Expand Down Expand Up @@ -64,6 +76,7 @@ const mainnetConfigs: EnvironmentConfigs = {

configsMap["local"] = localConfigs;
configsMap["devnet"] = devnetConfigs;
configsMap["devnet-amplifier"] = devnetAmplifierConfigs;
configsMap["testnet"] = testnetConfigs;
configsMap["mainnet"] = mainnetConfigs;

Expand Down

0 comments on commit c3af408

Please sign in to comment.