Skip to content

Commit

Permalink
Merge pull request #418 from EdgeApp/sam/log-order-status
Browse files Browse the repository at this point in the history
sam/log order status
  • Loading branch information
samholmes authored Dec 12, 2024
2 parents 76a5e5e + 9962d7e commit fae5c6a
Show file tree
Hide file tree
Showing 7 changed files with 32 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
5 changes: 5 additions & 0 deletions src/common/utxobased/info/bitcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const currencyInfo: EdgeCurrencyInfo = {
'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 @@ -48,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
5 changes: 5 additions & 0 deletions src/common/utxobased/info/bitcoincash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const currencyInfo: EdgeCurrencyInfo = {
'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 @@ -49,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
5 changes: 5 additions & 0 deletions src/common/utxobased/info/dash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const currencyInfo: EdgeCurrencyInfo = {
'wss://dash3.trezor.io',
'wss://dash4.trezor.io',
'wss://dash5.trezor.io',
'wss://dash-wusa1.edge.app',
'wss://dash.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
Expand All @@ -48,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
5 changes: 5 additions & 0 deletions src/common/utxobased/info/dogecoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const currencyInfo: EdgeCurrencyInfo = {
'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 @@ -44,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
5 changes: 5 additions & 0 deletions src/common/utxobased/info/litecoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export const currencyInfo: EdgeCurrencyInfo = {
'wss://ltc3.trezor.io',
'wss://ltc4.trezor.io',
'wss://ltc5.trezor.io',
'wss://ltc-wusa1.edge.app',
'wss://ltcbook.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
Expand All @@ -46,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
5 changes: 5 additions & 0 deletions src/common/utxobased/info/zcoin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export const currencyInfo: EdgeCurrencyInfo = {
customFeeSettings: ['satPerByte'],
blockbookServers: [
'wss://blockbook.firo.org',
'wss://firo-wusa1.edge.app',
'wss://firo.nownodes.io/wss/%{nowNodesApiKey}'
],
enableCustomServers: false
Expand All @@ -41,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 fae5c6a

Please sign in to comment.