Skip to content

Commit

Permalink
Add missing https to blockbook-nownode server configs
Browse files Browse the repository at this point in the history
  • Loading branch information
samholmes committed May 7, 2024
1 parent 1a3a80d commit 8305457
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/common/utxobased/info/bitcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['btcbook.nownodes.io']
uris: ['https://btcbook.nownodes.io']
}
],
formats: ['bip49', 'bip84', 'bip44', 'bip32'],
Expand Down
2 changes: 1 addition & 1 deletion src/common/utxobased/info/bitcoincash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['bchbook.nownodes.io']
uris: ['https://bchbook.nownodes.io']
}
],
formats: ['bip44', 'bip32'],
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 @@ -49,7 +49,7 @@ const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['dashbook.nownodes.io']
uris: ['https://dashbook.nownodes.io']
}
],
formats: ['bip44', 'bip32'],
Expand Down
2 changes: 1 addition & 1 deletion src/common/utxobased/info/digibyte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['dgbbook.nownodes.io']
uris: ['https://dgbbook.nownodes.io']
}
],
formats: ['bip49', 'bip84', 'bip44', 'bip32'],
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 @@ -46,7 +46,7 @@ const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['grsbook.nownodes.io']
uris: ['https://grsbook.nownodes.io']
}
],
formats: ['bip49', 'bip84', 'bip44', 'bip32'],
Expand Down
2 changes: 1 addition & 1 deletion src/common/utxobased/info/litecoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['ltcbook.nownodes.io']
uris: ['https://ltcbook.nownodes.io']
}
],
formats: ['bip49', 'bip84', 'bip44', 'bip32'],
Expand Down
6 changes: 6 additions & 0 deletions src/common/utxobased/info/zcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ export const currencyInfo: EdgeCurrencyInfo = {
}

export const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://firobook.nownodes.io']
}
],
formats: ['bip44', 'bip32'],
uriPrefix: 'firo',
gapLimit: 10,
Expand Down

0 comments on commit 8305457

Please sign in to comment.