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
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

- changed: Migrate Thorchain swap endpoints off NineRealms (thornode, tx tracker, Midgard sync fallback).

## 2.45.0 (2026-04-10)

- added: Support Bitcoin Cash, Ethereum, and BNB Chain in Bridgeless swap plugin
Expand Down
2 changes: 1 addition & 1 deletion scripts/synchronizers/thorchain/thorchainSynchronizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { asThorchainPoolsResponse } from './thorchainTypes'

// Fallback Midgard servers (try multiple endpoints)
const MIDGARD_SERVERS = [
'https://midgard.ninerealms.com',
'https://gateway.liquify.com/chain/thorchain_midgard',
'https://midgard.thorchain.info'
]

Expand Down
4 changes: 2 additions & 2 deletions src/swap/defi/thorchain/thorchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ const swapInfo: EdgeSwapInfo = {
displayName: 'Thorchain',
supportEmail: 'support@edge.app'
}
const orderUri = 'https://track.ninerealms.com/{{TXID}}'
const orderUri = 'https://track.thorchain.org/{{TXID}}'

const MIDGARD_SERVERS_DEFAULT = ['https://midgard.thorchain.info']
export const THORNODE_SERVERS_DEFAULT = [
'https://thornode.ninerealms.com/thorchain'
'https://gateway.liquify.com/chain/thorchain_api/thorchain'
]

const infoServer: {
Expand Down
Loading