@lifi/types 3.2.7 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [4.0.0](https://github.com/lifinance/types/compare/v3.2.8...v4.0.0) (2023-04-24)
6
+
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * continue removing old testnets references (#164)
11
+
12
+ ### Features
13
+
14
+ * continue removing old testnets references ([#164](https://github.com/lifinance/types/issues/164)) ([1dc005b](https://github.com/lifinance/types/commit/1dc005b5e16be567f572aee6f89d6125eb95a16a))
15
+
16
+ ### [3.2.8](https://github.com/lifinance/types/compare/v3.2.7...v3.2.8) (2023-04-21)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * add cbridge testnet USDC ([#163](https://github.com/lifinance/types/issues/163)) ([f039d8d](https://github.com/lifinance/types/commit/f039d8d19e1a70c66531cae501143e6c03a6f530))
22
+
5
23
  ### [3.2.7](https://github.com/lifinance/types/compare/v3.2.6...v3.2.7) (2023-04-19)
6
24
 
7
25
 
package/dist/base.d.ts CHANGED
@@ -32,6 +32,7 @@ export declare enum CoinKey {
32
32
  EVM = "EVM",
33
33
  USDT = "USDT",
34
34
  USDC = "USDC",
35
+ cbtUSDC = "cbtUSDC",
35
36
  BUSD = "BUSD",
36
37
  TEST = "TEST",
37
38
  KAL = "KAL",
@@ -84,16 +85,11 @@ export declare enum ChainKey {
84
85
  SOL = "sol",
85
86
  EVM = "evm",
86
87
  ARN = "arn",
87
- ROP = "rop",
88
- RIN = "rin",
89
88
  GOR = "gor",
90
89
  METT = "mett",
91
90
  DIOT = "diot",
92
- KOV = "kov",
93
91
  MUM = "mum",
94
- ARBT = "arbt",
95
92
  ARBG = "arbg",
96
- OPTT = "optt",
97
93
  OPTG = "optg",
98
94
  BSCT = "bsct",
99
95
  HECT = "hect",
@@ -147,16 +143,11 @@ export declare enum ChainId {
147
143
  OAS = 111971151099710,
148
144
  EVM = 9001,
149
145
  ARN = 42170,
150
- ROP = 3,
151
- RIN = 4,
152
146
  GOR = 5,
153
147
  METT = 12,
154
148
  DIOT = 13,
155
- KOV = 42,
156
149
  MUM = 80001,
157
- ARBT = 421611,
158
150
  ARBG = 421613,
159
- OPTT = 69,
160
151
  OPTG = 420,
161
152
  BSCT = 97,
162
153
  HECT = 256,
package/dist/base.js CHANGED
@@ -32,6 +32,7 @@ export var CoinKey;
32
32
  // Stable coins
33
33
  CoinKey["USDT"] = "USDT";
34
34
  CoinKey["USDC"] = "USDC";
35
+ CoinKey["cbtUSDC"] = "cbtUSDC";
35
36
  CoinKey["BUSD"] = "BUSD";
36
37
  // Testnet
37
38
  CoinKey["TEST"] = "TEST";
@@ -88,16 +89,11 @@ export var ChainKey;
88
89
  ChainKey["EVM"] = "evm";
89
90
  ChainKey["ARN"] = "arn";
90
91
  // Testnets
91
- ChainKey["ROP"] = "rop";
92
- ChainKey["RIN"] = "rin";
93
92
  ChainKey["GOR"] = "gor";
94
93
  ChainKey["METT"] = "mett";
95
94
  ChainKey["DIOT"] = "diot";
96
- ChainKey["KOV"] = "kov";
97
95
  ChainKey["MUM"] = "mum";
98
- ChainKey["ARBT"] = "arbt";
99
96
  ChainKey["ARBG"] = "arbg";
100
- ChainKey["OPTT"] = "optt";
101
97
  ChainKey["OPTG"] = "optg";
102
98
  ChainKey["BSCT"] = "bsct";
103
99
  ChainKey["HECT"] = "hect";
@@ -153,16 +149,11 @@ export var ChainId;
153
149
  ChainId[ChainId["EVM"] = 9001] = "EVM";
154
150
  ChainId[ChainId["ARN"] = 42170] = "ARN";
155
151
  // Testnets
156
- ChainId[ChainId["ROP"] = 3] = "ROP";
157
- ChainId[ChainId["RIN"] = 4] = "RIN";
158
152
  ChainId[ChainId["GOR"] = 5] = "GOR";
159
153
  ChainId[ChainId["METT"] = 12] = "METT";
160
154
  ChainId[ChainId["DIOT"] = 13] = "DIOT";
161
- ChainId[ChainId["KOV"] = 42] = "KOV";
162
155
  ChainId[ChainId["MUM"] = 80001] = "MUM";
163
- ChainId[ChainId["ARBT"] = 421611] = "ARBT";
164
156
  ChainId[ChainId["ARBG"] = 421613] = "ARBG";
165
- ChainId[ChainId["OPTT"] = 69] = "OPTT";
166
157
  ChainId[ChainId["OPTG"] = 420] = "OPTG";
167
158
  ChainId[ChainId["BSCT"] = 97] = "BSCT";
168
159
  ChainId[ChainId["HECT"] = 256] = "HECT";
@@ -32,6 +32,7 @@ export declare enum CoinKey {
32
32
  EVM = "EVM",
33
33
  USDT = "USDT",
34
34
  USDC = "USDC",
35
+ cbtUSDC = "cbtUSDC",
35
36
  BUSD = "BUSD",
36
37
  TEST = "TEST",
37
38
  KAL = "KAL",
@@ -84,16 +85,11 @@ export declare enum ChainKey {
84
85
  SOL = "sol",
85
86
  EVM = "evm",
86
87
  ARN = "arn",
87
- ROP = "rop",
88
- RIN = "rin",
89
88
  GOR = "gor",
90
89
  METT = "mett",
91
90
  DIOT = "diot",
92
- KOV = "kov",
93
91
  MUM = "mum",
94
- ARBT = "arbt",
95
92
  ARBG = "arbg",
96
- OPTT = "optt",
97
93
  OPTG = "optg",
98
94
  BSCT = "bsct",
99
95
  HECT = "hect",
@@ -147,16 +143,11 @@ export declare enum ChainId {
147
143
  OAS = 111971151099710,
148
144
  EVM = 9001,
149
145
  ARN = 42170,
150
- ROP = 3,
151
- RIN = 4,
152
146
  GOR = 5,
153
147
  METT = 12,
154
148
  DIOT = 13,
155
- KOV = 42,
156
149
  MUM = 80001,
157
- ARBT = 421611,
158
150
  ARBG = 421613,
159
- OPTT = 69,
160
151
  OPTG = 420,
161
152
  BSCT = 97,
162
153
  HECT = 256,
package/dist/cjs/base.js CHANGED
@@ -35,6 +35,7 @@ var CoinKey;
35
35
  // Stable coins
36
36
  CoinKey["USDT"] = "USDT";
37
37
  CoinKey["USDC"] = "USDC";
38
+ CoinKey["cbtUSDC"] = "cbtUSDC";
38
39
  CoinKey["BUSD"] = "BUSD";
39
40
  // Testnet
40
41
  CoinKey["TEST"] = "TEST";
@@ -91,16 +92,11 @@ var ChainKey;
91
92
  ChainKey["EVM"] = "evm";
92
93
  ChainKey["ARN"] = "arn";
93
94
  // Testnets
94
- ChainKey["ROP"] = "rop";
95
- ChainKey["RIN"] = "rin";
96
95
  ChainKey["GOR"] = "gor";
97
96
  ChainKey["METT"] = "mett";
98
97
  ChainKey["DIOT"] = "diot";
99
- ChainKey["KOV"] = "kov";
100
98
  ChainKey["MUM"] = "mum";
101
- ChainKey["ARBT"] = "arbt";
102
99
  ChainKey["ARBG"] = "arbg";
103
- ChainKey["OPTT"] = "optt";
104
100
  ChainKey["OPTG"] = "optg";
105
101
  ChainKey["BSCT"] = "bsct";
106
102
  ChainKey["HECT"] = "hect";
@@ -156,16 +152,11 @@ var ChainId;
156
152
  ChainId[ChainId["EVM"] = 9001] = "EVM";
157
153
  ChainId[ChainId["ARN"] = 42170] = "ARN";
158
154
  // Testnets
159
- ChainId[ChainId["ROP"] = 3] = "ROP";
160
- ChainId[ChainId["RIN"] = 4] = "RIN";
161
155
  ChainId[ChainId["GOR"] = 5] = "GOR";
162
156
  ChainId[ChainId["METT"] = 12] = "METT";
163
157
  ChainId[ChainId["DIOT"] = 13] = "DIOT";
164
- ChainId[ChainId["KOV"] = 42] = "KOV";
165
158
  ChainId[ChainId["MUM"] = 80001] = "MUM";
166
- ChainId[ChainId["ARBT"] = 421611] = "ARBT";
167
159
  ChainId[ChainId["ARBG"] = 421613] = "ARBG";
168
- ChainId[ChainId["OPTT"] = 69] = "OPTT";
169
160
  ChainId[ChainId["OPTG"] = 420] = "OPTG";
170
161
  ChainId[ChainId["BSCT"] = 97] = "BSCT";
171
162
  ChainId[ChainId["HECT"] = 256] = "HECT";
package/dist/cjs/coins.js CHANGED
@@ -90,22 +90,10 @@ const basicCoins = [
90
90
  decimals: 18,
91
91
  },
92
92
  // Testnets
93
- [base_1.ChainId.ROP]: {
94
- address: '0x0000000000000000000000000000000000000000',
95
- decimals: 18,
96
- },
97
- [base_1.ChainId.RIN]: {
98
- address: '0x0000000000000000000000000000000000000000',
99
- decimals: 18,
100
- },
101
93
  [base_1.ChainId.GOR]: {
102
94
  address: '0x0000000000000000000000000000000000000000',
103
95
  decimals: 18,
104
96
  },
105
- [base_1.ChainId.KOV]: {
106
- address: '0x0000000000000000000000000000000000000000',
107
- decimals: 18,
108
- },
109
97
  [base_1.ChainId.ONET]: {
110
98
  address: '0x268d6ff391b41b36a13b1693bd25f87fb4e4b392',
111
99
  decimals: 18,
@@ -114,18 +102,10 @@ const basicCoins = [
114
102
  address: '0xd66c6b4f0be8ce5b39d52e0fd1344c389929b378',
115
103
  decimals: 18,
116
104
  },
117
- [base_1.ChainId.OPTT]: {
118
- address: '0x0000000000000000000000000000000000000000',
119
- decimals: 18,
120
- },
121
105
  [base_1.ChainId.OPTG]: {
122
106
  address: '0x0000000000000000000000000000000000000000',
123
107
  decimals: 18,
124
108
  },
125
- [base_1.ChainId.ARBT]: {
126
- address: '0x0000000000000000000000000000000000000000',
127
- decimals: 18,
128
- },
129
109
  [base_1.ChainId.ARBG]: {
130
110
  address: '0x0000000000000000000000000000000000000000',
131
111
  decimals: 18,
@@ -331,22 +311,10 @@ const basicCoins = [
331
311
  decimals: 18,
332
312
  },
333
313
  // Testnets
334
- [base_1.ChainId.ROP]: {
335
- address: '0x31f42841c2db5173425b5223809cf3a38fede360',
336
- decimals: 18,
337
- },
338
- [base_1.ChainId.RIN]: {
339
- address: '0x5592ec0cfb4dbc12d3ab100b257153436a1f0fea',
340
- decimals: 18,
341
- },
342
314
  [base_1.ChainId.GOR]: {
343
315
  address: '0xdc31ee1784292379fbb2964b3b9c4124d8f89c60',
344
316
  decimals: 18,
345
317
  },
346
- [base_1.ChainId.KOV]: {
347
- address: '0x4f96fe3b7a6cf9725f59d353f723c1bdb64ca6aa',
348
- decimals: 18,
349
- },
350
318
  [base_1.ChainId.MUM]: {
351
319
  address: '0xb224913ce3851b0a0d7c0fb461eef40f2e31ddb8',
352
320
  decimals: 18,
@@ -576,20 +544,29 @@ const basicCoins = [
576
544
  name: 'Multichain USDT',
577
545
  },
578
546
  // Testnets
579
- [base_1.ChainId.ROP]: {
580
- address: '0x110a13fc3efe6a245b50102d2d79b3e76125ae83',
547
+ [base_1.ChainId.GOR]: {
548
+ address: '0x509ee0d083ddf8ac028f2a56731412edd63223b9',
581
549
  decimals: 6,
582
550
  },
583
- [base_1.ChainId.RIN]: {
584
- address: '0xd9ba894e0097f8cc2bbc9d24d308b98e36dc6d02',
551
+ },
552
+ },
553
+ // cBridge USDC testtoken
554
+ {
555
+ key: base_1.CoinKey.cbtUSDC,
556
+ name: base_1.CoinKey.cbtUSDC,
557
+ logoURI: 'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png',
558
+ verified: true,
559
+ chains: {
560
+ [base_1.ChainId.MUM]: {
561
+ address: '0x6de33698e9e9b787e09d3bd7771ef63557e148bb',
585
562
  decimals: 6,
586
563
  },
587
- [base_1.ChainId.KOV]: {
588
- address: '0x07de306ff27a2b630b1141956844eb1552b956b5',
564
+ [base_1.ChainId.AVA]: {
565
+ address: '0x2979a1cb90EEB9e75d7fB4f9813FCC40E4a7fD8b',
589
566
  decimals: 6,
590
567
  },
591
- [base_1.ChainId.GOR]: {
592
- address: '0x509ee0d083ddf8ac028f2a56731412edd63223b9',
568
+ [base_1.ChainId.BSCT]: {
569
+ address: '0x317F8d18FB16E49a958Becd0EA72f8E153d25654',
593
570
  decimals: 6,
594
571
  },
595
572
  },
@@ -691,14 +668,6 @@ const basicCoins = [
691
668
  name: 'Multichain USDC',
692
669
  },
693
670
  // Testnets
694
- [base_1.ChainId.ROP]: {
695
- address: '0x07865c6e87b9f70255377e024ace6630c1eaa37f',
696
- decimals: 6,
697
- },
698
- [base_1.ChainId.RIN]: {
699
- address: '0x4dbcdf9b62e891a7cec5a2568c3f4faf9e8abe2b',
700
- decimals: 6,
701
- },
702
671
  [base_1.ChainId.GOR]: {
703
672
  address: '0xd87ba7a50b2e7e660f678a895e4b72e7cb4ccd9c',
704
673
  decimals: 6,
@@ -776,14 +745,6 @@ const basicCoins = [
776
745
  logoURI: 'https://xpollinate.io/icon192.png',
777
746
  verified: false,
778
747
  chains: {
779
- [base_1.ChainId.ROP]: {
780
- address: '0xe71678794fff8846bff855f716b0ce9d9a78e844',
781
- decimals: 18,
782
- },
783
- [base_1.ChainId.RIN]: {
784
- address: '0x9ac2c46d7acc21c881154d57c0dc1c55a3139198',
785
- decimals: 18,
786
- },
787
748
  [base_1.ChainId.GOR]: {
788
749
  address: '0x8a1cad3703e0beae0e0237369b4fcd04228d1682',
789
750
  decimals: 18,
@@ -792,18 +753,10 @@ const basicCoins = [
792
753
  address: '0xe71678794fff8846bff855f716b0ce9d9a78e844',
793
754
  decimals: 18,
794
755
  },
795
- [base_1.ChainId.ARBT]: {
796
- address: '0xe71678794fff8846bff855f716b0ce9d9a78e844',
797
- decimals: 18,
798
- },
799
756
  [base_1.ChainId.BSCT]: {
800
757
  address: '0xd86bcb7d85163fbc81756bb9cc22225d6abccadb',
801
758
  decimals: 18,
802
759
  },
803
- [base_1.ChainId.OPTT]: {
804
- address: '0xe71678794fff8846bff855f716b0ce9d9a78e844',
805
- decimals: 18,
806
- },
807
760
  },
808
761
  },
809
762
  // Connext testnet coins
@@ -1004,30 +957,14 @@ const basicCoins = [
1004
957
  decimals: 18,
1005
958
  },
1006
959
  // Testnets
1007
- [base_1.ChainId.ROP]: {
1008
- address: '0xc778417e063141139fce010982780140aa0cd5ab',
1009
- decimals: 18,
1010
- },
1011
- [base_1.ChainId.RIN]: {
1012
- address: '0xc778417e063141139fce010982780140aa0cd5ab',
1013
- decimals: 18,
1014
- },
1015
960
  [base_1.ChainId.GOR]: {
1016
961
  address: '0xb4fbf271143f4fbf7b91a5ded31805e42b2208d6',
1017
962
  decimals: 18,
1018
963
  },
1019
- [base_1.ChainId.KOV]: {
1020
- address: '0xd0a1e359811322d97991e03f863a0c30c2cf029c',
1021
- decimals: 18,
1022
- },
1023
964
  [base_1.ChainId.MUM]: {
1024
965
  address: '0xa6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa',
1025
966
  decimals: 18,
1026
967
  },
1027
- [base_1.ChainId.OPTT]: {
1028
- address: '0x4200000000000000000000000000000000000006',
1029
- decimals: 18,
1030
- },
1031
968
  [base_1.ChainId.OPTG]: {
1032
969
  address: '0x4200000000000000000000000000000000000006',
1033
970
  decimals: 18,
@@ -1558,26 +1495,6 @@ exports.wrappedTokens = {
1558
1495
  logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/tokens/vlx.png',
1559
1496
  },
1560
1497
  // Testnets
1561
- [base_1.ChainId.ROP]: {
1562
- // https://ropsten.etherscan.io/token/0xc778417e063141139fce010982780140aa0cd5ab
1563
- address: '0xc778417e063141139fce010982780140aa0cd5ab',
1564
- symbol: 'WETH',
1565
- decimals: 18,
1566
- chainId: base_1.ChainId.ROP,
1567
- coinKey: base_1.CoinKey.WETH,
1568
- name: 'WETH',
1569
- logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1570
- },
1571
- [base_1.ChainId.RIN]: {
1572
- // https://rinkeby.etherscan.io/token/0xc778417e063141139fce010982780140aa0cd5ab
1573
- address: '0xc778417e063141139fce010982780140aa0cd5ab',
1574
- symbol: 'WETH',
1575
- decimals: 18,
1576
- chainId: base_1.ChainId.RIN,
1577
- coinKey: base_1.CoinKey.WETH,
1578
- name: 'WETH',
1579
- logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1580
- },
1581
1498
  [base_1.ChainId.GOR]: {
1582
1499
  // https://goerli.etherscan.io/token/0xb4fbf271143f4fbf7b91a5ded31805e42b2208d6
1583
1500
  address: '0xb4fbf271143f4fbf7b91a5ded31805e42b2208d6',
@@ -1588,16 +1505,6 @@ exports.wrappedTokens = {
1588
1505
  name: 'WETH',
1589
1506
  logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1590
1507
  },
1591
- [base_1.ChainId.KOV]: {
1592
- // https://kovan.etherscan.io/address/0xd0a1e359811322d97991e03f863a0c30c2cf029c
1593
- address: '0xd0a1e359811322d97991e03f863a0c30c2cf029c',
1594
- symbol: 'WETH',
1595
- decimals: 18,
1596
- chainId: base_1.ChainId.KOV,
1597
- coinKey: base_1.CoinKey.WETH,
1598
- name: 'WETH',
1599
- logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1600
- },
1601
1508
  [base_1.ChainId.MUM]: {
1602
1509
  // https://mumbai.polygonscan.com/token/0x9c3c9283d3e44854697cd22d3faa240cfb032889
1603
1510
  address: '0x9c3c9283d3e44854697cd22d3faa240cfb032889',
@@ -1617,16 +1524,6 @@ exports.wrappedTokens = {
1617
1524
  name: 'WRAPPED ONE',
1618
1525
  logoURI: 'https://d1xrz6ki9z98vb.cloudfront.net/venomswap/tokens/WONE.png',
1619
1526
  },
1620
- [base_1.ChainId.ARBT]: {
1621
- // https://testnet.arbiscan.io/token/0xB47e6A5f8b33b3F17603C83a0535A9dcD7E32681
1622
- address: '0xB47e6A5f8b33b3F17603C83a0535A9dcD7E32681',
1623
- symbol: 'WETH',
1624
- decimals: 18,
1625
- chainId: base_1.ChainId.ARBT,
1626
- coinKey: base_1.CoinKey.WETH,
1627
- name: 'WETH',
1628
- logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1629
- },
1630
1527
  [base_1.ChainId.ARBG]: {
1631
1528
  // https://goerli.arbiscan.io/token/0x42da9eE191833756c618778145A86E6709f70C9b
1632
1529
  address: '0x42da9eE191833756c618778145A86E6709f70C9b',
@@ -1637,16 +1534,6 @@ exports.wrappedTokens = {
1637
1534
  name: 'WETH',
1638
1535
  logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1639
1536
  },
1640
- [base_1.ChainId.OPTT]: {
1641
- // https://kovan-optimistic.etherscan.io/token/0x4200000000000000000000000000000000000006
1642
- address: '0x4200000000000000000000000000000000000006',
1643
- symbol: 'WETH',
1644
- decimals: 18,
1645
- chainId: base_1.ChainId.OPTT,
1646
- coinKey: base_1.CoinKey.WETH,
1647
- name: 'WETH',
1648
- logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1649
- },
1650
1537
  [base_1.ChainId.OPTG]: {
1651
1538
  // https://blockscout.com/optimism/goerli/address/0x4200000000000000000000000000000000000006
1652
1539
  address: '0x4200000000000000000000000000000000000006',
@@ -1001,62 +1001,6 @@ exports.supportedExchanges = [
1001
1001
  ],
1002
1002
  },
1003
1003
  // TESTNETS
1004
- // 3 - Ropsten
1005
- {
1006
- key: 'uniswap-rop',
1007
- name: 'Uniswap',
1008
- chainId: _1.ChainId.ROP,
1009
- logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/exchanges/uniswap.png',
1010
- webUrl: 'https://app.uniswap.org/',
1011
- tokenlistUrl: 'https://raw.githubusercontent.com/compound-finance/token-list/master/compound.tokenlist.json',
1012
- routerAddress: '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D',
1013
- factoryAddress: '0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f',
1014
- initCodeHash: '0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f',
1015
- baseTokens: [
1016
- (0, _1.findDefaultToken)(_1.CoinKey.ETH, _1.ChainId.ROP),
1017
- (0, _1.findDefaultToken)(_1.CoinKey.WETH, _1.ChainId.ROP),
1018
- ],
1019
- },
1020
- // TODO: sushiswap does not work properly
1021
- // {
1022
- // key: 'sushiswap-rop',
1023
- // name: 'SushiSwap',
1024
- // chainId: ChainId.ROP,
1025
- // logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/exchanges/sushi.png',
1026
- // webUrl: 'https://app.sushi.com/swap',
1027
- // tokenlistUrl: 'https://raw.githubusercontent.com/sushiswap/list/master/lists/token-lists/default-token-list/tokens/ropsten.json',
1028
- // routerAddress: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506',
1029
- // factoryAddress: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4',
1030
- // initCodeHash: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303',
1031
- // },
1032
- // 4 - Rinkeby
1033
- {
1034
- key: 'uniswap-rin',
1035
- name: 'Uniswap',
1036
- chainId: _1.ChainId.RIN,
1037
- logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/exchanges/uniswap.png',
1038
- webUrl: 'https://app.uniswap.org/',
1039
- tokenlistUrl: 'https://raw.githubusercontent.com/compound-finance/token-list/master/compound.tokenlist.json',
1040
- routerAddress: '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D',
1041
- factoryAddress: '0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f',
1042
- initCodeHash: '0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f',
1043
- baseTokens: [
1044
- (0, _1.findDefaultToken)(_1.CoinKey.ETH, _1.ChainId.RIN),
1045
- (0, _1.findDefaultToken)(_1.CoinKey.WETH, _1.ChainId.RIN),
1046
- ],
1047
- },
1048
- // TODO: sushiswap does not work properly
1049
- // {
1050
- // key: 'sushiswap-rin',
1051
- // name: 'SushiSwap',
1052
- // chainId: ChainId.RIN,
1053
- // logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/exchanges/sushi.png',
1054
- // webUrl: 'https://app.sushi.com/swap',
1055
- // tokenlistUrl: 'https://raw.githubusercontent.com/sushiswap/list/master/lists/token-lists/default-token-list/tokens/rinkeby.json',
1056
- // routerAddress: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506',
1057
- // factoryAddress: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4',
1058
- // initCodeHash: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303',
1059
- // },
1060
1004
  // 5 - Goerli
1061
1005
  {
1062
1006
  key: 'uniswap-gor',
@@ -1086,35 +1030,6 @@ exports.supportedExchanges = [
1086
1030
  // initCodeHash: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303',
1087
1031
  // baseTokens: [],
1088
1032
  // },
1089
- // 42 - Kovan
1090
- {
1091
- key: 'uniswap-kov',
1092
- name: 'Uniswap',
1093
- chainId: _1.ChainId.KOV,
1094
- logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/exchanges/uniswap.png',
1095
- webUrl: 'https://app.uniswap.org/',
1096
- tokenlistUrl: 'https://raw.githubusercontent.com/compound-finance/token-list/master/compound.tokenlist.json',
1097
- routerAddress: '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D',
1098
- factoryAddress: '0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f',
1099
- initCodeHash: '0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f',
1100
- baseTokens: [
1101
- (0, _1.findDefaultToken)(_1.CoinKey.ETH, _1.ChainId.KOV),
1102
- (0, _1.findDefaultToken)(_1.CoinKey.WETH, _1.ChainId.KOV),
1103
- ],
1104
- },
1105
- // TODO: sushiswap does not work properly
1106
- // {
1107
- // key: 'sushiswap-kov',
1108
- // name: 'SushiSwap',
1109
- // chainId: ChainId.KOV,
1110
- // logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/exchanges/sushi.png',
1111
- // webUrl: 'https://app.sushi.com/swap',
1112
- // tokenlistUrl: 'https://raw.githubusercontent.com/sushiswap/list/master/lists/token-lists/default-token-list/tokens/kovan.json',
1113
- // routerAddress: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506',
1114
- // factoryAddress: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4',
1115
- // initCodeHash: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303',
1116
- // baseTokens: [],
1117
- // },
1118
1033
  // 1666700000 - HARMONY TESTNET
1119
1034
  // TODO: Only sushiswap support ONET but official swap website also does not work correctly
1120
1035
  {
@@ -47,16 +47,11 @@ exports.multicallAddresses = {
47
47
  // [ChainId.PALM]: '0x0769fd68dFb93167989C6f7254cd0D766Fb2841F',
48
48
  // [ChainId.TELOS]: '0xdDCbf776dF3dE60163066A5ddDF2277cB445E0F3',
49
49
  // Testnet
50
- [_1.ChainId.ROP]: '0xcA11bde05977b3631167028862bE2a173976CA11',
51
- [_1.ChainId.RIN]: '0xcA11bde05977b3631167028862bE2a173976CA11',
52
50
  [_1.ChainId.GOR]: '0xcA11bde05977b3631167028862bE2a173976CA11',
53
- [_1.ChainId.KOV]: '0xcA11bde05977b3631167028862bE2a173976CA11',
54
51
  [_1.ChainId.MUM]: '0xcA11bde05977b3631167028862bE2a173976CA11',
55
- [_1.ChainId.ARBT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
56
52
  [_1.ChainId.BSCT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
57
53
  [_1.ChainId.ONET]: '0xdDCbf776dF3dE60163066A5ddDF2277cB445E0F3',
58
54
  [_1.ChainId.AVAT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
59
- [_1.ChainId.OPTT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
60
55
  [_1.ChainId.OPTG]: '0xcA11bde05977b3631167028862bE2a173976CA11',
61
56
  [_1.ChainId.EVMT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
62
57
  [_1.ChainId.MORT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
package/dist/coins.js CHANGED
@@ -87,22 +87,10 @@ const basicCoins = [
87
87
  decimals: 18,
88
88
  },
89
89
  // Testnets
90
- [ChainId.ROP]: {
91
- address: '0x0000000000000000000000000000000000000000',
92
- decimals: 18,
93
- },
94
- [ChainId.RIN]: {
95
- address: '0x0000000000000000000000000000000000000000',
96
- decimals: 18,
97
- },
98
90
  [ChainId.GOR]: {
99
91
  address: '0x0000000000000000000000000000000000000000',
100
92
  decimals: 18,
101
93
  },
102
- [ChainId.KOV]: {
103
- address: '0x0000000000000000000000000000000000000000',
104
- decimals: 18,
105
- },
106
94
  [ChainId.ONET]: {
107
95
  address: '0x268d6ff391b41b36a13b1693bd25f87fb4e4b392',
108
96
  decimals: 18,
@@ -111,18 +99,10 @@ const basicCoins = [
111
99
  address: '0xd66c6b4f0be8ce5b39d52e0fd1344c389929b378',
112
100
  decimals: 18,
113
101
  },
114
- [ChainId.OPTT]: {
115
- address: '0x0000000000000000000000000000000000000000',
116
- decimals: 18,
117
- },
118
102
  [ChainId.OPTG]: {
119
103
  address: '0x0000000000000000000000000000000000000000',
120
104
  decimals: 18,
121
105
  },
122
- [ChainId.ARBT]: {
123
- address: '0x0000000000000000000000000000000000000000',
124
- decimals: 18,
125
- },
126
106
  [ChainId.ARBG]: {
127
107
  address: '0x0000000000000000000000000000000000000000',
128
108
  decimals: 18,
@@ -328,22 +308,10 @@ const basicCoins = [
328
308
  decimals: 18,
329
309
  },
330
310
  // Testnets
331
- [ChainId.ROP]: {
332
- address: '0x31f42841c2db5173425b5223809cf3a38fede360',
333
- decimals: 18,
334
- },
335
- [ChainId.RIN]: {
336
- address: '0x5592ec0cfb4dbc12d3ab100b257153436a1f0fea',
337
- decimals: 18,
338
- },
339
311
  [ChainId.GOR]: {
340
312
  address: '0xdc31ee1784292379fbb2964b3b9c4124d8f89c60',
341
313
  decimals: 18,
342
314
  },
343
- [ChainId.KOV]: {
344
- address: '0x4f96fe3b7a6cf9725f59d353f723c1bdb64ca6aa',
345
- decimals: 18,
346
- },
347
315
  [ChainId.MUM]: {
348
316
  address: '0xb224913ce3851b0a0d7c0fb461eef40f2e31ddb8',
349
317
  decimals: 18,
@@ -573,20 +541,29 @@ const basicCoins = [
573
541
  name: 'Multichain USDT',
574
542
  },
575
543
  // Testnets
576
- [ChainId.ROP]: {
577
- address: '0x110a13fc3efe6a245b50102d2d79b3e76125ae83',
544
+ [ChainId.GOR]: {
545
+ address: '0x509ee0d083ddf8ac028f2a56731412edd63223b9',
578
546
  decimals: 6,
579
547
  },
580
- [ChainId.RIN]: {
581
- address: '0xd9ba894e0097f8cc2bbc9d24d308b98e36dc6d02',
548
+ },
549
+ },
550
+ // cBridge USDC testtoken
551
+ {
552
+ key: CoinKey.cbtUSDC,
553
+ name: CoinKey.cbtUSDC,
554
+ logoURI: 'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png',
555
+ verified: true,
556
+ chains: {
557
+ [ChainId.MUM]: {
558
+ address: '0x6de33698e9e9b787e09d3bd7771ef63557e148bb',
582
559
  decimals: 6,
583
560
  },
584
- [ChainId.KOV]: {
585
- address: '0x07de306ff27a2b630b1141956844eb1552b956b5',
561
+ [ChainId.AVA]: {
562
+ address: '0x2979a1cb90EEB9e75d7fB4f9813FCC40E4a7fD8b',
586
563
  decimals: 6,
587
564
  },
588
- [ChainId.GOR]: {
589
- address: '0x509ee0d083ddf8ac028f2a56731412edd63223b9',
565
+ [ChainId.BSCT]: {
566
+ address: '0x317F8d18FB16E49a958Becd0EA72f8E153d25654',
590
567
  decimals: 6,
591
568
  },
592
569
  },
@@ -688,14 +665,6 @@ const basicCoins = [
688
665
  name: 'Multichain USDC',
689
666
  },
690
667
  // Testnets
691
- [ChainId.ROP]: {
692
- address: '0x07865c6e87b9f70255377e024ace6630c1eaa37f',
693
- decimals: 6,
694
- },
695
- [ChainId.RIN]: {
696
- address: '0x4dbcdf9b62e891a7cec5a2568c3f4faf9e8abe2b',
697
- decimals: 6,
698
- },
699
668
  [ChainId.GOR]: {
700
669
  address: '0xd87ba7a50b2e7e660f678a895e4b72e7cb4ccd9c',
701
670
  decimals: 6,
@@ -773,14 +742,6 @@ const basicCoins = [
773
742
  logoURI: 'https://xpollinate.io/icon192.png',
774
743
  verified: false,
775
744
  chains: {
776
- [ChainId.ROP]: {
777
- address: '0xe71678794fff8846bff855f716b0ce9d9a78e844',
778
- decimals: 18,
779
- },
780
- [ChainId.RIN]: {
781
- address: '0x9ac2c46d7acc21c881154d57c0dc1c55a3139198',
782
- decimals: 18,
783
- },
784
745
  [ChainId.GOR]: {
785
746
  address: '0x8a1cad3703e0beae0e0237369b4fcd04228d1682',
786
747
  decimals: 18,
@@ -789,18 +750,10 @@ const basicCoins = [
789
750
  address: '0xe71678794fff8846bff855f716b0ce9d9a78e844',
790
751
  decimals: 18,
791
752
  },
792
- [ChainId.ARBT]: {
793
- address: '0xe71678794fff8846bff855f716b0ce9d9a78e844',
794
- decimals: 18,
795
- },
796
753
  [ChainId.BSCT]: {
797
754
  address: '0xd86bcb7d85163fbc81756bb9cc22225d6abccadb',
798
755
  decimals: 18,
799
756
  },
800
- [ChainId.OPTT]: {
801
- address: '0xe71678794fff8846bff855f716b0ce9d9a78e844',
802
- decimals: 18,
803
- },
804
757
  },
805
758
  },
806
759
  // Connext testnet coins
@@ -1001,30 +954,14 @@ const basicCoins = [
1001
954
  decimals: 18,
1002
955
  },
1003
956
  // Testnets
1004
- [ChainId.ROP]: {
1005
- address: '0xc778417e063141139fce010982780140aa0cd5ab',
1006
- decimals: 18,
1007
- },
1008
- [ChainId.RIN]: {
1009
- address: '0xc778417e063141139fce010982780140aa0cd5ab',
1010
- decimals: 18,
1011
- },
1012
957
  [ChainId.GOR]: {
1013
958
  address: '0xb4fbf271143f4fbf7b91a5ded31805e42b2208d6',
1014
959
  decimals: 18,
1015
960
  },
1016
- [ChainId.KOV]: {
1017
- address: '0xd0a1e359811322d97991e03f863a0c30c2cf029c',
1018
- decimals: 18,
1019
- },
1020
961
  [ChainId.MUM]: {
1021
962
  address: '0xa6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa',
1022
963
  decimals: 18,
1023
964
  },
1024
- [ChainId.OPTT]: {
1025
- address: '0x4200000000000000000000000000000000000006',
1026
- decimals: 18,
1027
- },
1028
965
  [ChainId.OPTG]: {
1029
966
  address: '0x4200000000000000000000000000000000000006',
1030
967
  decimals: 18,
@@ -1555,26 +1492,6 @@ export const wrappedTokens = {
1555
1492
  logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/tokens/vlx.png',
1556
1493
  },
1557
1494
  // Testnets
1558
- [ChainId.ROP]: {
1559
- // https://ropsten.etherscan.io/token/0xc778417e063141139fce010982780140aa0cd5ab
1560
- address: '0xc778417e063141139fce010982780140aa0cd5ab',
1561
- symbol: 'WETH',
1562
- decimals: 18,
1563
- chainId: ChainId.ROP,
1564
- coinKey: CoinKey.WETH,
1565
- name: 'WETH',
1566
- logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1567
- },
1568
- [ChainId.RIN]: {
1569
- // https://rinkeby.etherscan.io/token/0xc778417e063141139fce010982780140aa0cd5ab
1570
- address: '0xc778417e063141139fce010982780140aa0cd5ab',
1571
- symbol: 'WETH',
1572
- decimals: 18,
1573
- chainId: ChainId.RIN,
1574
- coinKey: CoinKey.WETH,
1575
- name: 'WETH',
1576
- logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1577
- },
1578
1495
  [ChainId.GOR]: {
1579
1496
  // https://goerli.etherscan.io/token/0xb4fbf271143f4fbf7b91a5ded31805e42b2208d6
1580
1497
  address: '0xb4fbf271143f4fbf7b91a5ded31805e42b2208d6',
@@ -1585,16 +1502,6 @@ export const wrappedTokens = {
1585
1502
  name: 'WETH',
1586
1503
  logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1587
1504
  },
1588
- [ChainId.KOV]: {
1589
- // https://kovan.etherscan.io/address/0xd0a1e359811322d97991e03f863a0c30c2cf029c
1590
- address: '0xd0a1e359811322d97991e03f863a0c30c2cf029c',
1591
- symbol: 'WETH',
1592
- decimals: 18,
1593
- chainId: ChainId.KOV,
1594
- coinKey: CoinKey.WETH,
1595
- name: 'WETH',
1596
- logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1597
- },
1598
1505
  [ChainId.MUM]: {
1599
1506
  // https://mumbai.polygonscan.com/token/0x9c3c9283d3e44854697cd22d3faa240cfb032889
1600
1507
  address: '0x9c3c9283d3e44854697cd22d3faa240cfb032889',
@@ -1614,16 +1521,6 @@ export const wrappedTokens = {
1614
1521
  name: 'WRAPPED ONE',
1615
1522
  logoURI: 'https://d1xrz6ki9z98vb.cloudfront.net/venomswap/tokens/WONE.png',
1616
1523
  },
1617
- [ChainId.ARBT]: {
1618
- // https://testnet.arbiscan.io/token/0xB47e6A5f8b33b3F17603C83a0535A9dcD7E32681
1619
- address: '0xB47e6A5f8b33b3F17603C83a0535A9dcD7E32681',
1620
- symbol: 'WETH',
1621
- decimals: 18,
1622
- chainId: ChainId.ARBT,
1623
- coinKey: CoinKey.WETH,
1624
- name: 'WETH',
1625
- logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1626
- },
1627
1524
  [ChainId.ARBG]: {
1628
1525
  // https://goerli.arbiscan.io/token/0x42da9eE191833756c618778145A86E6709f70C9b
1629
1526
  address: '0x42da9eE191833756c618778145A86E6709f70C9b',
@@ -1634,16 +1531,6 @@ export const wrappedTokens = {
1634
1531
  name: 'WETH',
1635
1532
  logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1636
1533
  },
1637
- [ChainId.OPTT]: {
1638
- // https://kovan-optimistic.etherscan.io/token/0x4200000000000000000000000000000000000006
1639
- address: '0x4200000000000000000000000000000000000006',
1640
- symbol: 'WETH',
1641
- decimals: 18,
1642
- chainId: ChainId.OPTT,
1643
- coinKey: CoinKey.WETH,
1644
- name: 'WETH',
1645
- logoURI: 'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
1646
- },
1647
1534
  [ChainId.OPTG]: {
1648
1535
  // https://blockscout.com/optimism/goerli/address/0x4200000000000000000000000000000000000006
1649
1536
  address: '0x4200000000000000000000000000000000000006',
package/dist/exchanges.js CHANGED
@@ -998,62 +998,6 @@ export const supportedExchanges = [
998
998
  ],
999
999
  },
1000
1000
  // TESTNETS
1001
- // 3 - Ropsten
1002
- {
1003
- key: 'uniswap-rop',
1004
- name: 'Uniswap',
1005
- chainId: ChainId.ROP,
1006
- logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/exchanges/uniswap.png',
1007
- webUrl: 'https://app.uniswap.org/',
1008
- tokenlistUrl: 'https://raw.githubusercontent.com/compound-finance/token-list/master/compound.tokenlist.json',
1009
- routerAddress: '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D',
1010
- factoryAddress: '0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f',
1011
- initCodeHash: '0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f',
1012
- baseTokens: [
1013
- findDefaultToken(CoinKey.ETH, ChainId.ROP),
1014
- findDefaultToken(CoinKey.WETH, ChainId.ROP),
1015
- ],
1016
- },
1017
- // TODO: sushiswap does not work properly
1018
- // {
1019
- // key: 'sushiswap-rop',
1020
- // name: 'SushiSwap',
1021
- // chainId: ChainId.ROP,
1022
- // logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/exchanges/sushi.png',
1023
- // webUrl: 'https://app.sushi.com/swap',
1024
- // tokenlistUrl: 'https://raw.githubusercontent.com/sushiswap/list/master/lists/token-lists/default-token-list/tokens/ropsten.json',
1025
- // routerAddress: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506',
1026
- // factoryAddress: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4',
1027
- // initCodeHash: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303',
1028
- // },
1029
- // 4 - Rinkeby
1030
- {
1031
- key: 'uniswap-rin',
1032
- name: 'Uniswap',
1033
- chainId: ChainId.RIN,
1034
- logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/exchanges/uniswap.png',
1035
- webUrl: 'https://app.uniswap.org/',
1036
- tokenlistUrl: 'https://raw.githubusercontent.com/compound-finance/token-list/master/compound.tokenlist.json',
1037
- routerAddress: '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D',
1038
- factoryAddress: '0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f',
1039
- initCodeHash: '0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f',
1040
- baseTokens: [
1041
- findDefaultToken(CoinKey.ETH, ChainId.RIN),
1042
- findDefaultToken(CoinKey.WETH, ChainId.RIN),
1043
- ],
1044
- },
1045
- // TODO: sushiswap does not work properly
1046
- // {
1047
- // key: 'sushiswap-rin',
1048
- // name: 'SushiSwap',
1049
- // chainId: ChainId.RIN,
1050
- // logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/exchanges/sushi.png',
1051
- // webUrl: 'https://app.sushi.com/swap',
1052
- // tokenlistUrl: 'https://raw.githubusercontent.com/sushiswap/list/master/lists/token-lists/default-token-list/tokens/rinkeby.json',
1053
- // routerAddress: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506',
1054
- // factoryAddress: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4',
1055
- // initCodeHash: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303',
1056
- // },
1057
1001
  // 5 - Goerli
1058
1002
  {
1059
1003
  key: 'uniswap-gor',
@@ -1083,35 +1027,6 @@ export const supportedExchanges = [
1083
1027
  // initCodeHash: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303',
1084
1028
  // baseTokens: [],
1085
1029
  // },
1086
- // 42 - Kovan
1087
- {
1088
- key: 'uniswap-kov',
1089
- name: 'Uniswap',
1090
- chainId: ChainId.KOV,
1091
- logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/exchanges/uniswap.png',
1092
- webUrl: 'https://app.uniswap.org/',
1093
- tokenlistUrl: 'https://raw.githubusercontent.com/compound-finance/token-list/master/compound.tokenlist.json',
1094
- routerAddress: '0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D',
1095
- factoryAddress: '0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f',
1096
- initCodeHash: '0x96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f',
1097
- baseTokens: [
1098
- findDefaultToken(CoinKey.ETH, ChainId.KOV),
1099
- findDefaultToken(CoinKey.WETH, ChainId.KOV),
1100
- ],
1101
- },
1102
- // TODO: sushiswap does not work properly
1103
- // {
1104
- // key: 'sushiswap-kov',
1105
- // name: 'SushiSwap',
1106
- // chainId: ChainId.KOV,
1107
- // logoURI: 'https://raw.githubusercontent.com/lifinance/types/main/src/assets/icons/exchanges/sushi.png',
1108
- // webUrl: 'https://app.sushi.com/swap',
1109
- // tokenlistUrl: 'https://raw.githubusercontent.com/sushiswap/list/master/lists/token-lists/default-token-list/tokens/kovan.json',
1110
- // routerAddress: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506',
1111
- // factoryAddress: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4',
1112
- // initCodeHash: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303',
1113
- // baseTokens: [],
1114
- // },
1115
1030
  // 1666700000 - HARMONY TESTNET
1116
1031
  // TODO: Only sushiswap support ONET but official swap website also does not work correctly
1117
1032
  {
package/dist/multicall.js CHANGED
@@ -44,16 +44,11 @@ export const multicallAddresses = {
44
44
  // [ChainId.PALM]: '0x0769fd68dFb93167989C6f7254cd0D766Fb2841F',
45
45
  // [ChainId.TELOS]: '0xdDCbf776dF3dE60163066A5ddDF2277cB445E0F3',
46
46
  // Testnet
47
- [ChainId.ROP]: '0xcA11bde05977b3631167028862bE2a173976CA11',
48
- [ChainId.RIN]: '0xcA11bde05977b3631167028862bE2a173976CA11',
49
47
  [ChainId.GOR]: '0xcA11bde05977b3631167028862bE2a173976CA11',
50
- [ChainId.KOV]: '0xcA11bde05977b3631167028862bE2a173976CA11',
51
48
  [ChainId.MUM]: '0xcA11bde05977b3631167028862bE2a173976CA11',
52
- [ChainId.ARBT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
53
49
  [ChainId.BSCT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
54
50
  [ChainId.ONET]: '0xdDCbf776dF3dE60163066A5ddDF2277cB445E0F3',
55
51
  [ChainId.AVAT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
56
- [ChainId.OPTT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
57
52
  [ChainId.OPTG]: '0xcA11bde05977b3631167028862bE2a173976CA11',
58
53
  [ChainId.EVMT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
59
54
  [ChainId.MORT]: '0xcA11bde05977b3631167028862bE2a173976CA11',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lifi/types",
3
- "version": "3.2.7",
3
+ "version": "4.0.0",
4
4
  "description": "Types for the LI.FI stack",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/index.js",