Skip to content

Commit

Permalink
Add Edge-hosted blockbook-nownode connections
Browse files Browse the repository at this point in the history
  • Loading branch information
samholmes committed Dec 12, 2024
1 parent b6dcb82 commit 9962d7e
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- added: Edge servers added to blockbook server list for BTC, BCH, DOGE, FIRO, and LTC.

## 3.4.4 (2024-11-08)

- fixed: Improper handling of WebSocket message processing errors, causing sync-halting.
Expand Down
4 changes: 4 additions & 0 deletions src/common/utxobased/info/bitcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ const currencyInfo: EdgeCurrencyInfo = {

const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://btc-wusa1.edge.app']
},
{
type: 'blockbook-nownode',
uris: ['https://btcbook.nownodes.io']
Expand Down
4 changes: 4 additions & 0 deletions src/common/utxobased/info/bitcoincash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ const currencyInfo: EdgeCurrencyInfo = {

const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://bch-wusa1.edge.app']
},
{
type: 'blockbook-nownode',
uris: ['https://bchbook.nownodes.io']
Expand Down
4 changes: 4 additions & 0 deletions src/common/utxobased/info/dash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ const currencyInfo: EdgeCurrencyInfo = {

const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://dash-wusa1.edge.app']
},
{
type: 'blockbook-nownode',
uris: ['https://dashbook.nownodes.io']
Expand Down
4 changes: 4 additions & 0 deletions src/common/utxobased/info/dogecoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ const currencyInfo: EdgeCurrencyInfo = {

const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://doge-wusa1.edge.app']
},
{
type: 'blockbook-nownode',
uris: ['https://dogebook.nownodes.io']
Expand Down
4 changes: 4 additions & 0 deletions src/common/utxobased/info/litecoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ export const currencyInfo: EdgeCurrencyInfo = {

export const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://ltc-wusa1.edge.app']
},
{
type: 'blockbook-nownode',
uris: ['https://ltcbook.nownodes.io']
Expand Down
4 changes: 4 additions & 0 deletions src/common/utxobased/info/zcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ export const currencyInfo: EdgeCurrencyInfo = {

export const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://firo-wusa1.edge.app']
},
{
type: 'blockbook-nownode',
uris: ['https://firobook.nownodes.io']
Expand Down

0 comments on commit 9962d7e

Please sign in to comment.