Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/common/utxobased/info/bitcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ const currencyInfo: EdgeCurrencyInfo = {
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: [
'wss://btc-wusa1.edge.app',
'wss://btc-eu1.edge.app',
'wss://btc1.trezor.io',
'wss://btc2.trezor.io',
'wss://btc3.trezor.io',
'wss://btc4.trezor.io',
'wss://btc5.trezor.io',
'wss://btc-wusa1.edge.app',
'wss://btcbook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
Expand All @@ -53,7 +54,7 @@ const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://btc-wusa1.edge.app']
uris: ['https://btc-wusa1.edge.app', 'https://btc-eu1.edge.app']
},
{
type: 'blockbook-nownode',
Expand Down
4 changes: 2 additions & 2 deletions src/common/utxobased/info/bitcoincash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ const currencyInfo: EdgeCurrencyInfo = {
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: [
'wss://bch-eusa1.edge.app',
'wss://bch1.trezor.io',
'wss://bch2.trezor.io',
'wss://bch3.trezor.io',
'wss://bch4.trezor.io',
'wss://bch5.trezor.io',
'wss://bch-wusa1.edge.app',
'wss://bchbook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
Expand All @@ -54,7 +54,7 @@ const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://bch-wusa1.edge.app']
uris: ['https://bch-eusa1.edge.app']
},
{
type: 'blockbook-nownode',
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 @@ -35,12 +35,12 @@ const currencyInfo: EdgeCurrencyInfo = {
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: [
'wss://dash-wusa1.edge.app',
'wss://dash1.trezor.io',
'wss://dash2.trezor.io',
'wss://dash3.trezor.io',
'wss://dash4.trezor.io',
'wss://dash5.trezor.io',
'wss://dash-eusa1.edge.app',
'wss://dash.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
Expand Down
5 changes: 5 additions & 0 deletions src/common/utxobased/info/digibyte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const currencyInfo: EdgeCurrencyInfo = {
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: [
'wss://dgb-eu1.edge.app',
'wss://dgb1.trezor.io',
'wss://dgb2.trezor.io',
'wss://dgbbook.nownodes.io/wss/%{nowNodesApiKey}'
Expand All @@ -44,6 +45,10 @@ const currencyInfo: EdgeCurrencyInfo = {

const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://dgb-eu1.edge.app']
},
{
type: 'blockbook-nownode',
uris: ['https://dgbbook.nownodes.io']
Expand Down
4 changes: 2 additions & 2 deletions src/common/utxobased/info/dogecoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ const currencyInfo: EdgeCurrencyInfo = {
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: [
'wss://doge-eusa1.edge.app',
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: WebSocket/HTTP Endpoint Mismatch Causes Sync Issues

The blockbookServers for Bitcoin Cash and Dogecoin were updated to use eusa1 regional WebSocket endpoints, while their corresponding HTTP serverConfigs remain pointing to wusa1 regional endpoints. This mismatch leads to inconsistent connectivity and synchronization.

Additional Locations (1)
Fix in Cursor Fix in Web

'wss://doge1.trezor.io',
'wss://doge2.trezor.io',
'wss://doge3.trezor.io',
'wss://doge4.trezor.io',
'wss://doge5.trezor.io',
'wss://doge-wusa1.edge.app',
'wss://dogebook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
Expand All @@ -49,7 +49,7 @@ const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://doge-wusa1.edge.app']
uris: ['https://doge-eusa1.edge.app']
},
{
type: 'blockbook-nownode',
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 @@ -33,12 +33,12 @@ export const currencyInfo: EdgeCurrencyInfo = {
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: [
'wss://ltc-wusa1.edge.app',
'wss://ltc1.trezor.io',
'wss://ltc2.trezor.io',
'wss://ltc3.trezor.io',
'wss://ltc4.trezor.io',
'wss://ltc5.trezor.io',
'wss://ltc-eusa1.edge.app',
'wss://ltcbook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
Expand Down
4 changes: 2 additions & 2 deletions src/common/utxobased/info/pivx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const currencyInfo: EdgeCurrencyInfo = {
...legacyMemoInfo,
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: ['wss://pivx-eusa1.edge.app', 'wss://zkbitcoin.com'],
blockbookServers: ['wss://pivx-wusa1.edge.app', 'wss://zkbitcoin.com'],
enableCustomServers: false
},
displayName: 'PIVX',
Expand All @@ -45,7 +45,7 @@ const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://btc-wusa1.edge.app']
uris: ['https://pivx-wusa1.edge.app']
},
{
type: 'blockbook-nownode',
Expand Down
8 changes: 7 additions & 1 deletion src/common/utxobased/info/qtum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const currencyInfo: EdgeCurrencyInfo = {
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: [
'wss://qtum-eusa1.edge.app',
'wss://qtum-wusa1.edge.app',
'wss://blockv3.qtum.info',
'wss://qtum.atomicwallet.io'
],
Expand All @@ -40,6 +40,12 @@ const currencyInfo: EdgeCurrencyInfo = {
}

const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://qtum-wusa1.edge.app']
}
],
formats: ['bip44', 'bip32'],
gapLimit: 10,
feeUpdateInterval: 60000,
Expand Down
7 changes: 7 additions & 0 deletions src/common/utxobased/info/vertcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const currencyInfo: EdgeCurrencyInfo = {
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: [
'wss://vtc-wusa1.edge.app',
'wss://vtc1.trezor.io',
'wss://vtc2.trezor.io',
'wss://vtc3.trezor.io',
Expand All @@ -45,6 +46,12 @@ const currencyInfo: EdgeCurrencyInfo = {
}

const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://vtc-wusa1.edge.app']
}
],
formats: ['bip49', 'bip84', 'bip44', 'bip32'],
forks: [],
gapLimit: 10,
Expand Down
6 changes: 3 additions & 3 deletions src/common/utxobased/info/zcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export const currencyInfo: EdgeCurrencyInfo = {
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: [
// 'wss://blockbook.firo.org',
'wss://firo-wusa1.edge.app'
'wss://firo-eusa1.edge.app',
'wss://blockbook.firo.org'
// 'wss://firo.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
Expand All @@ -46,7 +46,7 @@ export const engineInfo: EngineInfo = {
serverConfigs: [
{
type: 'blockbook-nownode',
uris: ['https://firo-wusa1.edge.app']
uris: ['https://firo-eusa1.edge.app']
},
{
type: 'blockbook-nownode',
Expand Down
Loading