Skip to content

Commit

Permalink
Fix NowNodes URL's
Browse files Browse the repository at this point in the history
  • Loading branch information
swansontec committed Aug 28, 2024
1 parent 7a14e97 commit 1e17239
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 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

- fixed: Update NowNodes URL's for DASH, GRS, and FIRO.

## 3.3.0 (2024-08-20)

- added: Support for blockbook server connections with "%{key-name}" key parameters
Expand Down
2 changes: 1 addition & 1 deletion src/common/utxobased/info/dash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const currencyInfo: EdgeCurrencyInfo = {
'wss://dash3.trezor.io',
'wss://dash4.trezor.io',
'wss://dash5.trezor.io',
'wss://dashbook.nownodes.io/wss/%{nowNodesApiKey}'
'wss://dash.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
},
Expand Down
2 changes: 1 addition & 1 deletion src/common/utxobased/info/groestlcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://grsbook.nownodes.io']
uris: ['https://grs.nownodes.io']
}
],
formats: ['bip49', 'bip84', 'bip44', 'bip32'],
Expand Down
2 changes: 1 addition & 1 deletion src/common/utxobased/info/zcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const currencyInfo: EdgeCurrencyInfo = {
customFeeSettings: ['satPerByte'],
blockbookServers: [
'wss://blockbook.firo.org',
'wss://firobook.nownodes.io/wss/%{nowNodesApiKey}'
'wss://firo.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
},
Expand Down

0 comments on commit 1e17239

Please sign in to comment.