Skip to content

Commit 809c5d8

Browse files
authored
fix: change testnet seed node key, add mainnet seed node key (#1193)
1 parent 98d51e7 commit 809c5d8

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

lib/db/seeds/mainnet.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
import * as db from '../../db/types';
22
import { SwapClientType } from '../../constants/enums';
33

4-
const nodes = [] as db.NodeAttributes[];
4+
const nodes = [
5+
{
6+
nodePubKey: '025fbfe0e92bf0e5e64500ed542d51f4f9d59111a2d3fa142e90567ec417c4a617',
7+
addresses: [{ host: 'xud1.exchangeunion.com', port: 8885 }],
8+
},
9+
] as db.NodeAttributes[];
510

611
const currencies = [
712
{ id: 'BTC', swapClient: SwapClientType.Lnd, decimalPlaces: 8 },

lib/db/seeds/testnet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { SwapClientType } from '../../constants/enums';
33

44
const nodes = [
55
{
6-
nodePubKey: '02ee43f389523d7947e6a456eeb70f8429535f216654d1b1fdc753e48a96ca1469',
6+
nodePubKey: '03640f9e41cf77349ef29ed84ab02671dfc0a76963b8e84209cdeab4c9639ace0b',
77
addresses: [{ host: 'xud1.testnet.exchangeunion.com', port: 8885 }],
88
},
99
] as db.NodeAttributes[];

0 commit comments

Comments
 (0)