Skip to content

Commit

Permalink
Add NOWNodes blockbook servers to info files
Browse files Browse the repository at this point in the history
  • Loading branch information
samholmes committed Aug 20, 2024
1 parent 8bf6175 commit e68db30
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 8 deletions.
3 changes: 2 additions & 1 deletion src/common/utxobased/info/bitcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ const currencyInfo: EdgeCurrencyInfo = {
'wss://btc2.trezor.io',
'wss://btc3.trezor.io',
'wss://btc4.trezor.io',
'wss://btc5.trezor.io'
'wss://btc5.trezor.io',
'wss://btcbook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
},
Expand Down
3 changes: 2 additions & 1 deletion src/common/utxobased/info/bitcoincash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ const currencyInfo: EdgeCurrencyInfo = {
'wss://bch2.trezor.io',
'wss://bch3.trezor.io',
'wss://bch4.trezor.io',
'wss://bch5.trezor.io'
'wss://bch5.trezor.io',
'wss://bchbook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
},
Expand Down
3 changes: 2 additions & 1 deletion src/common/utxobased/info/dash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ const currencyInfo: EdgeCurrencyInfo = {
'wss://dash2.trezor.io',
'wss://dash3.trezor.io',
'wss://dash4.trezor.io',
'wss://dash5.trezor.io'
'wss://dash5.trezor.io',
'wss://dashbook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
},
Expand Down
6 changes: 5 additions & 1 deletion src/common/utxobased/info/digibyte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ const currencyInfo: EdgeCurrencyInfo = {
...legacyMemoInfo,
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: ['wss://dgb1.trezor.io', 'wss://dgb2.trezor.io'],
blockbookServers: [
'wss://dgb1.trezor.io',
'wss://dgb2.trezor.io',
'wss://dgbbook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
},
metaTokens: []
Expand Down
3 changes: 2 additions & 1 deletion src/common/utxobased/info/dogecoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ const currencyInfo: EdgeCurrencyInfo = {
'wss://doge2.trezor.io',
'wss://doge3.trezor.io',
'wss://doge4.trezor.io',
'wss://doge5.trezor.io'
'wss://doge5.trezor.io',
'wss://dogebook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
},
Expand Down
5 changes: 4 additions & 1 deletion src/common/utxobased/info/groestlcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ const currencyInfo: EdgeCurrencyInfo = {
...legacyMemoInfo,
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: ['wss://blockbook.groestlcoin.org'],
blockbookServers: [
'wss://blockbook.groestlcoin.org',
'wss://grsbook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
},
metaTokens: []
Expand Down
3 changes: 2 additions & 1 deletion src/common/utxobased/info/litecoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ export const currencyInfo: EdgeCurrencyInfo = {
'wss://ltc2.trezor.io',
'wss://ltc3.trezor.io',
'wss://ltc4.trezor.io',
'wss://ltc5.trezor.io'
'wss://ltc5.trezor.io',
'wss://ltcbook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
},
Expand Down
5 changes: 4 additions & 1 deletion src/common/utxobased/info/zcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ export const currencyInfo: EdgeCurrencyInfo = {
...legacyMemoInfo,
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: ['wss://blockbook.firo.org'],
blockbookServers: [
'wss://blockbook.firo.org',
'wss://firobook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
},
metaTokens: []
Expand Down

0 comments on commit e68db30

Please sign in to comment.