@axelarjs/core
Advanced tools
Comparing version
# @axelarjs/core | ||
## 0.2.1 | ||
### Patch Changes | ||
- initial release of deposit-address package | ||
## 0.2.0 | ||
@@ -4,0 +10,0 @@ |
10
index.js
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.AXELAR_CONFIG_API_URLS = exports.GMP_API_URLS = exports.AXELARSCAN_API_URLS = exports.COSMOS_GAS_RECEIVER_OPTIONS = exports.ENVIRONMENTS = void 0; | ||
exports.DEPOSIT_ADDRESS_API_URLS = exports.AXELAR_CONFIG_API_URLS = exports.GMP_API_URLS = exports.AXELARSCAN_UI_URLS = exports.AXELARSCAN_API_URLS = exports.COSMOS_GAS_RECEIVER_OPTIONS = exports.ENVIRONMENTS = void 0; | ||
exports.ENVIRONMENTS = { | ||
@@ -16,2 +16,6 @@ testnet: "testnet", | ||
}; | ||
exports.AXELARSCAN_UI_URLS = { | ||
testnet: "https://testnet.axelarscan.io", | ||
mainnet: "https://axelarscan.io", | ||
}; | ||
exports.GMP_API_URLS = { | ||
@@ -25,1 +29,5 @@ testnet: "https://testnet.api.gmp.axelarscan.io", | ||
}; | ||
exports.DEPOSIT_ADDRESS_API_URLS = { | ||
testnet: "https://nest-server-testnet.axelar.dev", | ||
mainnet: "https://nest-server-mainnet.axelar.dev", | ||
}; |
{ | ||
"name": "@axelarjs/core", | ||
"version": "0.0.0-snapshot.188644f", | ||
"version": "0.0.0-snapshot.4d5c855", | ||
"description": "Axelarjs Core", | ||
@@ -18,3 +18,3 @@ "publishConfig": { | ||
"typescript": "^5.2.2", | ||
"@axelarjs/config": "0.0.0-snapshot.188644f" | ||
"@axelarjs/config": "0.0.0-snapshot.4d5c855" | ||
}, | ||
@@ -21,0 +21,0 @@ "scripts": { |
@@ -22,2 +22,9 @@ export const ENVIRONMENTS = { | ||
export const AXELARSCAN_UI_URLS = { | ||
testnet: "https://testnet.axelarscan.io", | ||
mainnet: "https://axelarscan.io", | ||
} as const; | ||
export type AxelarscanUIUrl = keyof typeof AXELARSCAN_UI_URLS; | ||
export const GMP_API_URLS = { | ||
@@ -36,1 +43,8 @@ testnet: "https://testnet.api.gmp.axelarscan.io", | ||
export type AxelarConfigAPIUrl = keyof typeof AXELAR_CONFIG_API_URLS; | ||
export const DEPOSIT_ADDRESS_API_URLS = { | ||
testnet: "https://nest-server-testnet.axelar.dev", | ||
mainnet: "https://nest-server-mainnet.axelar.dev", | ||
} as const; | ||
export type DepositAddressAPIUrl = keyof typeof DEPOSIT_ADDRESS_API_URLS; |
Sorry, the diff of this file is not supported yet
15509
5.7%77
30.51%