We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 728b391 commit bf17eabCopy full SHA for bf17eab
lib/db/seeds/mainnet.ts
@@ -32,11 +32,19 @@ const currencies = [
32
decimalPlaces: 18,
33
tokenAddress: '0x0000000000000000000000000000000000000000',
34
},
35
+ {
36
+ id: 'USDT',
37
+ swapClient: SwapClientType.Connext,
38
+ decimalPlaces: 6,
39
+ tokenAddress: '0xdac17f958d2ee523a2206206994597c13d831ec7',
40
+ },
41
] as db.CurrencyAttributes[];
42
43
const pairs = [
- { baseCurrency: 'LTC', quoteCurrency: 'BTC' },
44
{ baseCurrency: 'ETH', quoteCurrency: 'BTC' },
45
+ { baseCurrency: 'LTC', quoteCurrency: 'BTC' },
46
+ { baseCurrency: 'LTC', quoteCurrency: 'USDT' },
47
+ { baseCurrency: 'BTC', quoteCurrency: 'USDT' },
48
] as db.PairAttributes[];
49
50
export {
0 commit comments