Skip to content

Commit

Permalink
chore(blockchain-link): update networks to use trezor.io proxy servers
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasklim committed Jan 3, 2025
1 parent a56e19c commit c6d420c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 18 deletions.
18 changes: 8 additions & 10 deletions packages/blockchain-link/src/ui/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ export default [
name: 'Ripple',
worker: 'js/ripple-worker.js',
server: [
'wss://xrplcluster.com',
'wss://xrpl.ws',
'wss://s1.ripple.com',
'wss://s2.ripple.com',
'wss://xrp1.trezor.io',
'wss://xrp2.trezor.io',
'wss://xrp3.trezor.io',
'wss://xrp4.trezor.io',
],
debug: true,
},
Expand Down Expand Up @@ -38,8 +38,7 @@ export default [
blockchain: {
name: 'Ripple Testnet',
worker: 'js/ripple-worker.js',
server: ['wss://s.altnet.rippletest.net'],
// server: ['wss://s.devnet.rippletest.net'],
server: ['wss://txrp1.trezor.io'],
debug: true,
},
data: {
Expand Down Expand Up @@ -499,8 +498,7 @@ export default [
blockchain: {
name: 'Cardano Mainnet',
worker: 'js/blockfrost-worker.js',
server: ['wss://trezor-cardano-mainnet.blockfrost.io'],
// server: ['ws://localhost:3005'],
server: ['wss://ada1.trezor.io', 'wss://ada2.trezor.io'],
debug: true,
},
data: {
Expand All @@ -523,7 +521,7 @@ export default [
blockchain: {
name: 'Cardano Preview Testnet',
worker: 'js/blockfrost-worker.js',
server: ['wss://trezor-cardano-preview.blockfrost.io'],
server: ['wss://tada1.trezor.io'],
debug: true,
},
data: {
Expand Down Expand Up @@ -579,7 +577,7 @@ export default [
name: 'Solana Devnet',
// we do not use path to worker build here because its not used, we use it just to match this config to actual implementation of the worker
worker: 'solana',
server: ['https://solana-dev.trezor.io'],
server: ['https://dsol1.trezor.io'],
debug: true,
},
data: {
Expand Down
16 changes: 8 additions & 8 deletions packages/connect-common/files/coins.json
Original file line number Diff line number Diff line change
Expand Up @@ -2582,7 +2582,7 @@
{
"blockchain_link": {
"type": "blockfrost",
"url": ["wss://trezor-cardano-mainnet.blockfrost.io"]
"url": ["wss://ada1.trezor.io", "wss://ada2.trezor.io"]
},
"curve": "ed25519",
"decimals": 6,
Expand Down Expand Up @@ -2615,7 +2615,7 @@
}
},
{
"blockchain_link": { "type": "solana", "url": ["https://solana-dev.trezor.io"] },
"blockchain_link": { "type": "solana", "url": ["https://dsol1.trezor.io"] },
"curve": "ed25519",
"decimals": 9,
"is_testnet": false,
Expand Down Expand Up @@ -2705,7 +2705,7 @@
{
"blockchain_link": {
"type": "blockfrost",
"url": ["wss://trezor-cardano-preview.blockfrost.io"]
"url": ["wss://tada1.trezor.io"]
},
"curve": "ed25519",
"decimals": 6,
Expand All @@ -2722,7 +2722,7 @@
}
},
{
"blockchain_link": { "type": "ripple", "url": ["wss://s.altnet.rippletest.net"] },
"blockchain_link": { "type": "ripple", "url": ["wss://txrp1.trezor.io"] },
"curve": "secp256k1",
"decimals": 6,
"is_testnet": false,
Expand Down Expand Up @@ -2789,10 +2789,10 @@
"blockchain_link": {
"type": "ripple",
"url": [
"wss://xrplcluster.com",
"wss://xrpl.ws",
"wss://s1.ripple.com",
"wss://s2.ripple.com"
"wss://xrp1.trezor.io",
"wss://xrp2.trezor.io",
"wss://xrp3.trezor.io",
"wss://xrp4.trezor.io"
]
},
"curve": "secp256k1",
Expand Down

0 comments on commit c6d420c

Please sign in to comment.