From aefa63349637f4c16ae601af1c48d91000a32d76 Mon Sep 17 00:00:00 2001 From: Justin <328965+justinbarry@users.noreply.github.com> Date: Wed, 23 Oct 2024 15:56:42 -0700 Subject: [PATCH] Add devnet URLs to DASHBOARD_URLS and REST_URLS 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. --- packages/constants/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/constants/src/index.ts b/packages/constants/src/index.ts index 8fb1c81..e30285f 100644 --- a/packages/constants/src/index.ts +++ b/packages/constants/src/index.ts @@ -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) {