Skip to content

Commit bf17eab

Browse files
author
Karl Ranna
committed
feat(connext): add USDT pairs to mainnet
1 parent 728b391 commit bf17eab

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Diff for: lib/db/seeds/mainnet.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,19 @@ const currencies = [
3232
decimalPlaces: 18,
3333
tokenAddress: '0x0000000000000000000000000000000000000000',
3434
},
35+
{
36+
id: 'USDT',
37+
swapClient: SwapClientType.Connext,
38+
decimalPlaces: 6,
39+
tokenAddress: '0xdac17f958d2ee523a2206206994597c13d831ec7',
40+
},
3541
] as db.CurrencyAttributes[];
3642

3743
const pairs = [
38-
{ baseCurrency: 'LTC', quoteCurrency: 'BTC' },
3944
{ baseCurrency: 'ETH', quoteCurrency: 'BTC' },
45+
{ baseCurrency: 'LTC', quoteCurrency: 'BTC' },
46+
{ baseCurrency: 'LTC', quoteCurrency: 'USDT' },
47+
{ baseCurrency: 'BTC', quoteCurrency: 'USDT' },
4048
] as db.PairAttributes[];
4149

4250
export {

0 commit comments

Comments
 (0)