Skip to content

Commit

Permalink
Merge pull request #53 from bob-collective/nakul/fix_change_endpoints
Browse files Browse the repository at this point in the history
fix: change testnet and mainnet urls
  • Loading branch information
nud3l committed Oct 23, 2023
2 parents c93691c + 3e392d5 commit 3a84e31
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sdk/src/electrs.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Base path for the mainnet Esplora API.
* @default "https://btc-mainnet.interlay.io"
* @default "https://btc-mainnet.gobob.xyz"
*/
export const MAINNET_ESPLORA_BASE_PATH = "https://btc-mainnet.interlay.io";
export const MAINNET_ESPLORA_BASE_PATH = "https://btc-mainnet.gobob.xyz";
/**
* Base path for the testnet Esplora API.
* @default "https://btc-testnet.interlay.io"
* @default "https://btc-testnet.gobob.xyz"
*/
export const TESTNET_ESPLORA_BASE_PATH = "https://btc-testnet.interlay.io";
export const TESTNET_ESPLORA_BASE_PATH = "https://btc-testnet.gobob.xyz";
/**
* Base path for the regtest Esplora API.
* @default "http://localhost:3003"
Expand Down

0 comments on commit 3a84e31

Please sign in to comment.