Skip to content

Commit

Permalink
Add devnet URLs to DASHBOARD_URLS and REST_URLS
Browse files Browse the repository at this point in the history
This commit introduces "xion-devnet-1" entries to both the DASHBOARD_URLS and REST_URLS constants. These new entries provide local development endpoints for the dashboard and REST API respectively. This enhancement facilitates easier testing and development workflows.
  • Loading branch information
justinbarry committed Oct 23, 2024
1 parent bfdc30e commit aefa633
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/constants/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,13 @@ export const testChainInfo: ChainInfo = {
const DASHBOARD_URLS = {
"xion-mainnet-1": "https://settings.mainnet.burnt.com",
"xion-testnet-1": "https://settings.testnet.burnt.com",
"xion-devnet-1": "http://localhost:3000",
};

const REST_URLS = {
"xion-mainnet-1": "https://api.xion-mainnet-1.burnt.com:443",
"xion-testnet-1": "https://api.xion-testnet-1.burnt.com:443",
"xion-devnet-1": "http://localhost:26657",
};

export async function fetchConfig(rpcUrl: string) {
Expand Down

0 comments on commit aefa633

Please sign in to comment.