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 f2ea37b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/chilly-cameras-lay.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@burnt-labs/constants": minor
---

Add devnet URLs to constants package
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 f2ea37b

Please sign in to comment.