basememe-v4-contracts-configs 0.0.3 → 0.0.5

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/index.js CHANGED
@@ -111,6 +111,18 @@ var basememeFactoryImplABI = [
111
111
  name: "buyExactIn",
112
112
  outputs: []
113
113
  },
114
+ {
115
+ stateMutability: "payable",
116
+ type: "function",
117
+ inputs: [
118
+ { name: "_token", internalType: "address", type: "address" },
119
+ { name: "_collateralAmountIn", internalType: "uint256", type: "uint256" },
120
+ { name: "_amountOutMin", internalType: "uint256", type: "uint256" },
121
+ { name: "_tradeReferrer", internalType: "address", type: "address" }
122
+ ],
123
+ name: "buyExactInWithCollateral",
124
+ outputs: []
125
+ },
114
126
  {
115
127
  stateMutability: "payable",
116
128
  type: "function",
@@ -141,6 +153,67 @@ var basememeFactoryImplABI = [
141
153
  name: "chainV4LiquidityConfig",
142
154
  outputs: [{ name: "", internalType: "bytes", type: "bytes" }]
143
155
  },
156
+ {
157
+ stateMutability: "view",
158
+ type: "function",
159
+ inputs: [{ name: "", internalType: "address", type: "address" }],
160
+ name: "collateralConfigSet",
161
+ outputs: [{ name: "", internalType: "bool", type: "bool" }]
162
+ },
163
+ {
164
+ stateMutability: "view",
165
+ type: "function",
166
+ inputs: [{ name: "", internalType: "address", type: "address" }],
167
+ name: "collateralConfigs",
168
+ outputs: [
169
+ {
170
+ name: "curveParams",
171
+ internalType: "struct IBondingCurve.CurveParams",
172
+ type: "tuple",
173
+ components: [
174
+ {
175
+ name: "initialTokenSupply",
176
+ internalType: "uint256",
177
+ type: "uint256"
178
+ },
179
+ {
180
+ name: "virtualCollateralReservesInitial",
181
+ internalType: "uint256",
182
+ type: "uint256"
183
+ },
184
+ {
185
+ name: "virtualTokenReservesInitial",
186
+ internalType: "uint256",
187
+ type: "uint256"
188
+ },
189
+ { name: "feeBPS", internalType: "uint256", type: "uint256" },
190
+ { name: "mcLowerLimit", internalType: "uint256", type: "uint256" },
191
+ { name: "mcUpperLimit", internalType: "uint256", type: "uint256" },
192
+ {
193
+ name: "tokensMigrationThreshold",
194
+ internalType: "uint256",
195
+ type: "uint256"
196
+ },
197
+ {
198
+ name: "fixedMigrationFee",
199
+ internalType: "uint256",
200
+ type: "uint256"
201
+ },
202
+ { name: "poolCreationFee", internalType: "uint256", type: "uint256" },
203
+ { name: "firstBuyFee", internalType: "uint256", type: "uint256" },
204
+ {
205
+ name: "targetCollectionAmount",
206
+ internalType: "uint256",
207
+ type: "uint256"
208
+ },
209
+ { name: "collateralToken", internalType: "address", type: "address" },
210
+ { name: "v4LpFee", internalType: "uint24", type: "uint24" }
211
+ ]
212
+ },
213
+ { name: "v4LiquidityConfig", internalType: "bytes", type: "bytes" },
214
+ { name: "v4ConfigVersion", internalType: "uint8", type: "uint8" }
215
+ ]
216
+ },
144
217
  {
145
218
  stateMutability: "pure",
146
219
  type: "function",
@@ -214,6 +287,42 @@ var basememeFactoryImplABI = [
214
287
  name: "createBasememeTokenAndBuy",
215
288
  outputs: [{ name: "", internalType: "address", type: "address" }]
216
289
  },
290
+ {
291
+ stateMutability: "payable",
292
+ type: "function",
293
+ inputs: [
294
+ { name: "_name", internalType: "string", type: "string" },
295
+ { name: "_symbol", internalType: "string", type: "string" },
296
+ { name: "_tokenURI", internalType: "string", type: "string" },
297
+ { name: "_nonce", internalType: "uint256", type: "uint256" },
298
+ { name: "_collateralAmountIn", internalType: "uint256", type: "uint256" },
299
+ { name: "_tokenAmountMin", internalType: "uint256", type: "uint256" },
300
+ { name: "_signature", internalType: "bytes", type: "bytes" },
301
+ { name: "_platformReferrer", internalType: "address", type: "address" },
302
+ { name: "_payoutRecipient", internalType: "address", type: "address" },
303
+ { name: "_tokenSalt", internalType: "bytes32", type: "bytes32" },
304
+ { name: "_collateralToken", internalType: "address", type: "address" }
305
+ ],
306
+ name: "createBasememeTokenAndBuyWithCollateral",
307
+ outputs: [{ name: "", internalType: "address", type: "address" }]
308
+ },
309
+ {
310
+ stateMutability: "nonpayable",
311
+ type: "function",
312
+ inputs: [
313
+ { name: "_name", internalType: "string", type: "string" },
314
+ { name: "_symbol", internalType: "string", type: "string" },
315
+ { name: "_tokenURI", internalType: "string", type: "string" },
316
+ { name: "_nonce", internalType: "uint256", type: "uint256" },
317
+ { name: "_signature", internalType: "bytes", type: "bytes" },
318
+ { name: "_platformReferrer", internalType: "address", type: "address" },
319
+ { name: "_payoutRecipient", internalType: "address", type: "address" },
320
+ { name: "_tokenSalt", internalType: "bytes32", type: "bytes32" },
321
+ { name: "_collateralToken", internalType: "address", type: "address" }
322
+ ],
323
+ name: "createBasememeTokenWithCollateral",
324
+ outputs: [{ name: "", internalType: "address", type: "address" }]
325
+ },
217
326
  {
218
327
  stateMutability: "view",
219
328
  type: "function",
@@ -234,7 +343,9 @@ var basememeFactoryImplABI = [
234
343
  name: "_bondingCurveImplementation",
235
344
  internalType: "address",
236
345
  type: "address"
237
- }
346
+ },
347
+ { name: "_chainV4LiquidityConfig", internalType: "bytes", type: "bytes" },
348
+ { name: "_chainV4ConfigVersion", internalType: "uint8", type: "uint8" }
238
349
  ],
239
350
  name: "initialize",
240
351
  outputs: []
@@ -329,6 +440,61 @@ var basememeFactoryImplABI = [
329
440
  name: "setBondingCurveImplementation",
330
441
  outputs: []
331
442
  },
443
+ {
444
+ stateMutability: "nonpayable",
445
+ type: "function",
446
+ inputs: [
447
+ { name: "_collateralToken", internalType: "address", type: "address" },
448
+ {
449
+ name: "params",
450
+ internalType: "struct IBondingCurve.CurveParams",
451
+ type: "tuple",
452
+ components: [
453
+ {
454
+ name: "initialTokenSupply",
455
+ internalType: "uint256",
456
+ type: "uint256"
457
+ },
458
+ {
459
+ name: "virtualCollateralReservesInitial",
460
+ internalType: "uint256",
461
+ type: "uint256"
462
+ },
463
+ {
464
+ name: "virtualTokenReservesInitial",
465
+ internalType: "uint256",
466
+ type: "uint256"
467
+ },
468
+ { name: "feeBPS", internalType: "uint256", type: "uint256" },
469
+ { name: "mcLowerLimit", internalType: "uint256", type: "uint256" },
470
+ { name: "mcUpperLimit", internalType: "uint256", type: "uint256" },
471
+ {
472
+ name: "tokensMigrationThreshold",
473
+ internalType: "uint256",
474
+ type: "uint256"
475
+ },
476
+ {
477
+ name: "fixedMigrationFee",
478
+ internalType: "uint256",
479
+ type: "uint256"
480
+ },
481
+ { name: "poolCreationFee", internalType: "uint256", type: "uint256" },
482
+ { name: "firstBuyFee", internalType: "uint256", type: "uint256" },
483
+ {
484
+ name: "targetCollectionAmount",
485
+ internalType: "uint256",
486
+ type: "uint256"
487
+ },
488
+ { name: "collateralToken", internalType: "address", type: "address" },
489
+ { name: "v4LpFee", internalType: "uint24", type: "uint24" }
490
+ ]
491
+ },
492
+ { name: "v4LiquidityConfig", internalType: "bytes", type: "bytes" },
493
+ { name: "v4ConfigVersion", internalType: "uint8", type: "uint8" }
494
+ ],
495
+ name: "setCollateralConfig",
496
+ outputs: []
497
+ },
332
498
  {
333
499
  stateMutability: "nonpayable",
334
500
  type: "function",
@@ -369,6 +535,13 @@ var basememeFactoryImplABI = [
369
535
  name: "tokenToBondingCurve",
370
536
  outputs: [{ name: "", internalType: "address", type: "address" }]
371
537
  },
538
+ {
539
+ stateMutability: "view",
540
+ type: "function",
541
+ inputs: [{ name: "", internalType: "address", type: "address" }],
542
+ name: "tokenToCollateralToken",
543
+ outputs: [{ name: "", internalType: "address", type: "address" }]
544
+ },
372
545
  {
373
546
  stateMutability: "nonpayable",
374
547
  type: "function",
@@ -776,6 +949,12 @@ var basememeFactoryImplABI = [
776
949
  inputs: [{ name: "target", internalType: "address", type: "address" }],
777
950
  name: "AddressEmptyCode"
778
951
  },
952
+ {
953
+ type: "error",
954
+ inputs: [],
955
+ name: "BuyExactInUnsupportedForErc20Collateral"
956
+ },
957
+ { type: "error", inputs: [], name: "CurveParamsNotSet" },
779
958
  { type: "error", inputs: [], name: "DexTreasuryZeroValue" },
780
959
  {
781
960
  type: "error",
@@ -797,6 +976,7 @@ var basememeFactoryImplABI = [
797
976
  ],
798
977
  name: "InsufficientBalance"
799
978
  },
979
+ { type: "error", inputs: [], name: "InvalidExactInCollateralAmount" },
800
980
  { type: "error", inputs: [], name: "InvalidInitialization" },
801
981
  { type: "error", inputs: [], name: "InvalidNonce" },
802
982
  { type: "error", inputs: [], name: "InvalidSignature" },
@@ -836,7 +1016,7 @@ var basememeFactoryImplABI = [
836
1016
  ];
837
1017
  var basememeFactoryImplAddress = {
838
1018
  8453: "0x0000000000000000000000000000000000000000",
839
- 84532: "0x9fB2eb6C1D01E146b26Ca258C765644BC17c7DC3"
1019
+ 84532: "0xc443B62e6526465De6a670c26AA6cE1082115762"
840
1020
  };
841
1021
  var basememeFactoryImplConfig = {
842
1022
  address: basememeFactoryImplAddress,
@@ -1226,30 +1406,7 @@ var bondingCurveABI = [
1226
1406
  type: "address"
1227
1407
  },
1228
1408
  { name: "_protocolRewards", internalType: "address", type: "address" },
1229
- { name: "_initialTokenSupply", internalType: "uint256", type: "uint256" },
1230
- {
1231
- name: "_virtualCollateralReservesInitial",
1232
- internalType: "uint256",
1233
- type: "uint256"
1234
- },
1235
- {
1236
- name: "_virtualTokenReservesInitial",
1237
- internalType: "uint256",
1238
- type: "uint256"
1239
- },
1240
- { name: "_feeBasisPoints", internalType: "uint256", type: "uint256" },
1241
- { name: "_fixedMigrationFee", internalType: "uint256", type: "uint256" },
1242
- { name: "_poolCreationFee", internalType: "uint256", type: "uint256" },
1243
- { name: "_firstBuyFee", internalType: "uint256", type: "uint256" },
1244
- { name: "_mcLowerLimit", internalType: "uint256", type: "uint256" },
1245
- { name: "_mcUpperLimit", internalType: "uint256", type: "uint256" },
1246
- {
1247
- name: "_tokensMigrationThreshold",
1248
- internalType: "uint256",
1249
- type: "uint256"
1250
- },
1251
1409
  { name: "_weth", internalType: "address", type: "address" },
1252
- { name: "_v4LpFee", internalType: "uint24", type: "uint24" },
1253
1410
  {
1254
1411
  name: "_tokenImplementation",
1255
1412
  internalType: "address",
@@ -1398,6 +1555,25 @@ var bondingCurveABI = [
1398
1555
  { name: "tradeFee", internalType: "uint256", type: "uint256" }
1399
1556
  ]
1400
1557
  },
1558
+ {
1559
+ stateMutability: "payable",
1560
+ type: "function",
1561
+ inputs: [
1562
+ { name: "_collateralAmountIn", internalType: "uint256", type: "uint256" },
1563
+ { name: "_amountOutMin", internalType: "uint256", type: "uint256" },
1564
+ { name: "_tradeReferrer", internalType: "address", type: "address" }
1565
+ ],
1566
+ name: "buyExactInWithAmount",
1567
+ outputs: [
1568
+ {
1569
+ name: "collateralToPayWithFee",
1570
+ internalType: "uint256",
1571
+ type: "uint256"
1572
+ },
1573
+ { name: "tradeFee", internalType: "uint256", type: "uint256" },
1574
+ { name: "firstFee", internalType: "uint256", type: "uint256" }
1575
+ ]
1576
+ },
1401
1577
  {
1402
1578
  stateMutability: "payable",
1403
1579
  type: "function",
@@ -1421,6 +1597,13 @@ var bondingCurveABI = [
1421
1597
  { name: "firstFee", internalType: "uint256", type: "uint256" }
1422
1598
  ]
1423
1599
  },
1600
+ {
1601
+ stateMutability: "view",
1602
+ type: "function",
1603
+ inputs: [],
1604
+ name: "collateralToken",
1605
+ outputs: [{ name: "", internalType: "address", type: "address" }]
1606
+ },
1424
1607
  {
1425
1608
  stateMutability: "nonpayable",
1426
1609
  type: "function",
@@ -1569,7 +1752,51 @@ var bondingCurveABI = [
1569
1752
  inputs: [
1570
1753
  { name: "_platformReferrer", internalType: "address", type: "address" },
1571
1754
  { name: "_payoutRecipient", internalType: "address", type: "address" },
1572
- { name: "_token", internalType: "address", type: "address" }
1755
+ { name: "_token", internalType: "address", type: "address" },
1756
+ {
1757
+ name: "_params",
1758
+ internalType: "struct IBondingCurve.CurveParams",
1759
+ type: "tuple",
1760
+ components: [
1761
+ {
1762
+ name: "initialTokenSupply",
1763
+ internalType: "uint256",
1764
+ type: "uint256"
1765
+ },
1766
+ {
1767
+ name: "virtualCollateralReservesInitial",
1768
+ internalType: "uint256",
1769
+ type: "uint256"
1770
+ },
1771
+ {
1772
+ name: "virtualTokenReservesInitial",
1773
+ internalType: "uint256",
1774
+ type: "uint256"
1775
+ },
1776
+ { name: "feeBPS", internalType: "uint256", type: "uint256" },
1777
+ { name: "mcLowerLimit", internalType: "uint256", type: "uint256" },
1778
+ { name: "mcUpperLimit", internalType: "uint256", type: "uint256" },
1779
+ {
1780
+ name: "tokensMigrationThreshold",
1781
+ internalType: "uint256",
1782
+ type: "uint256"
1783
+ },
1784
+ {
1785
+ name: "fixedMigrationFee",
1786
+ internalType: "uint256",
1787
+ type: "uint256"
1788
+ },
1789
+ { name: "poolCreationFee", internalType: "uint256", type: "uint256" },
1790
+ { name: "firstBuyFee", internalType: "uint256", type: "uint256" },
1791
+ {
1792
+ name: "targetCollectionAmount",
1793
+ internalType: "uint256",
1794
+ type: "uint256"
1795
+ },
1796
+ { name: "collateralToken", internalType: "address", type: "address" },
1797
+ { name: "v4LpFee", internalType: "uint24", type: "uint24" }
1798
+ ]
1799
+ }
1573
1800
  ],
1574
1801
  name: "initialize",
1575
1802
  outputs: []
@@ -1728,6 +1955,13 @@ var bondingCurveABI = [
1728
1955
  name: "sendingToPairForbidden",
1729
1956
  outputs: [{ name: "", internalType: "bool", type: "bool" }]
1730
1957
  },
1958
+ {
1959
+ stateMutability: "view",
1960
+ type: "function",
1961
+ inputs: [],
1962
+ name: "targetCollectionAmount",
1963
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
1964
+ },
1731
1965
  {
1732
1966
  stateMutability: "view",
1733
1967
  type: "function",
@@ -1819,6 +2053,13 @@ var bondingCurveABI = [
1819
2053
  name: "virtualCollateralReservesInitial",
1820
2054
  outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
1821
2055
  },
2056
+ {
2057
+ stateMutability: "view",
2058
+ type: "function",
2059
+ inputs: [],
2060
+ name: "virtualCollateralReservesTarget",
2061
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
2062
+ },
1822
2063
  {
1823
2064
  stateMutability: "view",
1824
2065
  type: "function",
@@ -2053,7 +2294,7 @@ var bondingCurveABI = [
2053
2294
  ];
2054
2295
  var bondingCurveAddress = {
2055
2296
  8453: "0x0000000000000000000000000000000000000000",
2056
- 84532: "0x4F5CE506fa0A8bF06b3A5e3e61061e863B04FC65"
2297
+ 84532: "0x4Fb7aebFD48266EB1cFaF12C809d01FeD9894210"
2057
2298
  };
2058
2299
  var bondingCurveConfig = {
2059
2300
  address: bondingCurveAddress,
@@ -2334,6 +2575,7 @@ var chainConfigs = {
2334
2575
  "MC_LOWER_LIMIT": "11795000000000000000",
2335
2576
  "TOKENS_MIGRATION_THRESHOLD": "799764393968807750154100378",
2336
2577
  "TARGET_ETH_COLLECTION_AMOUNT": "2500759732077910169",
2578
+ "TARGET_COLLECTION_AMOUNT": "2500759732077910169",
2337
2579
  "SIGNER": "0x0000000000000000000000000000000000000000",
2338
2580
  "DEPLOYER": "0x30d197dd771d8f75378aad9428ed9d5e24bdbbbb",
2339
2581
  "FACTORY_OWNER": "0x2730B29aCbBCD34A59B720338e8d06619Fd71ACa",
@@ -2393,6 +2635,7 @@ var chainConfigs = {
2393
2635
  "MC_LOWER_LIMIT": "11795000000000000000",
2394
2636
  "TOKENS_MIGRATION_THRESHOLD": "799764393968807750154100378",
2395
2637
  "TARGET_ETH_COLLECTION_AMOUNT": "2500759732077910169",
2638
+ "TARGET_COLLECTION_AMOUNT": "2500759732077910169",
2396
2639
  "SIGNER": "0x0000000000000000000000000000000000000000",
2397
2640
  "DEPLOYER": "0x30d197dd771d8f75378aad9428ed9d5e24bdbbbb",
2398
2641
  "FACTORY_OWNER": "0x2730B29aCbBCD34A59B720338e8d06619Fd71ACa",
@@ -2428,6 +2671,7 @@ var chainConfigs = {
2428
2671
  "MC_LOWER_LIMIT": "11795000000000000000",
2429
2672
  "TOKENS_MIGRATION_THRESHOLD": "799764393968807750154100378",
2430
2673
  "TARGET_ETH_COLLECTION_AMOUNT": "2500759732077910169",
2674
+ "TARGET_COLLECTION_AMOUNT": "2500759732077910169",
2431
2675
  "SIGNER": "0x0000000000000000000000000000000000000000",
2432
2676
  "DEPLOYER": "0x9575b2d4eeb082f777af9dae93702aea6d2769d3",
2433
2677
  "FACTORY_OWNER": "0x9575b2d4eeb082f777af9dae93702aea6d2769d3",
@@ -2439,14 +2683,78 @@ var chainConfigs = {
2439
2683
  "WETH": "0x4200000000000000000000000000000000000006",
2440
2684
  "V3_POOL_FEE": "10000",
2441
2685
  "TRADE_REFERRER_FEE_BPS": "1000",
2442
- "CONTRACT_VERSION": "2.0.0",
2686
+ "CONTRACT_VERSION": "2.1.0",
2443
2687
  "V4_POOL_MANAGER": "0x05E73354cFDd6745C338b50BcFDfA3Aa6fA03408",
2444
2688
  "V4_POSITION_MANAGER": "0x4B2C77d209D3405F41a037Ec6c77F7F5b8e2ca80",
2445
2689
  "QUOTER_V4": "0x4A6513c898fe1B2d0E78d3b0e0A4a151589B1cBa",
2446
2690
  "PERMIT2": "0x000000000022D473030F116dDEE9F6B43aC78BA3",
2447
2691
  "UNIVERSAL_ROUTER": "0x492E6456D9528771018DeB9E87ef7750EF184104",
2448
2692
  "V4_LP_FEE": "20000",
2449
- "V4_LIQUIDITY_CONFIG": "0x00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27660fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcced0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd3780fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6278fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd92e8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe81300000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcced0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd36b8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6278fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecf50fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecf5000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000270600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
2693
+ "V4_LIQUIDITY_CONFIG": "0x00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27660fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcced0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd3780fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6278fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd92e8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe81300000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcced0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd36b8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6278fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecf50fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecf5000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000270600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
2694
+ "COLLATERAL_TEMPLATES": [
2695
+ {
2696
+ "ID": "ETH_DEFAULT",
2697
+ "COLLATERAL_TOKEN": "0x0000000000000000000000000000000000000000",
2698
+ "SYMBOL": "ETH",
2699
+ "DECIMALS": 18,
2700
+ "ENABLED": true,
2701
+ "TOTAL_SUPPLY": "1000000000000000000000000000",
2702
+ "VIRTUAL_TOKEN_RESERVES": "1088264899999999783900020736",
2703
+ "VIRTUAL_COLLATERAL_RESERVES": "902103736559999872",
2704
+ "FEE_BASIS_POINTS": "200",
2705
+ "FIXED_MIGRATION_FEE": "100000000000000000",
2706
+ "POOL_CREATION_FEE": "50000000000000000",
2707
+ "FIRST_BUY_FEE": "1500000000000000",
2708
+ "MC_UPPER_LIMIT": "11835000000000000000",
2709
+ "MC_LOWER_LIMIT": "11795000000000000000",
2710
+ "TOKENS_MIGRATION_THRESHOLD": "799764393968807750154100378",
2711
+ "TARGET_ETH_COLLECTION_AMOUNT": "2500759732077910169",
2712
+ "TARGET_COLLECTION_AMOUNT": "2500759732077910169",
2713
+ "V4_LP_FEE": "20000",
2714
+ "V4_LIQUIDITY_CONFIG": "0x00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27660fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcced0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd3780fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6278fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd92e8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe81300000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcced0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd36b8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6278fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecf50fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecf5000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000270600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
2715
+ },
2716
+ {
2717
+ "ID": "USDC_DEFAULT",
2718
+ "COLLATERAL_TOKEN": "0x4967BC4b61B3259856D1A925900263AB2B64F6de",
2719
+ "SYMBOL": "USDC",
2720
+ "DECIMALS": 6,
2721
+ "ENABLED": true,
2722
+ "TOTAL_SUPPLY": "1000000000000000000000000000",
2723
+ "VIRTUAL_TOKEN_RESERVES": "1089005925584827574248030665",
2724
+ "VIRTUAL_COLLATERAL_RESERVES": "3251316663",
2725
+ "FEE_BASIS_POINTS": "200",
2726
+ "FIXED_MIGRATION_FEE": "359400000",
2727
+ "POOL_CREATION_FEE": "179700000",
2728
+ "FIRST_BUY_FEE": "5391000",
2729
+ "MC_UPPER_LIMIT": "42534990000",
2730
+ "MC_LOWER_LIMIT": "42391230000",
2731
+ "TOKENS_MIGRATION_THRESHOLD": "800000000000000000000000000",
2732
+ "TARGET_USDC_COLLECTION_AMOUNT": "9000000000",
2733
+ "TARGET_COLLECTION_AMOUNT": "9000000000",
2734
+ "V4_LP_FEE": "20000",
2735
+ "V4_LIQUIDITY_CONFIG": "0x00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27660fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9d770fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa4020fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa6a50fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa9b88fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5320fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb89080000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9d770fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa3e90fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa6a50fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5320fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5320fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbd7f0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbd7f000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000270600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
2736
+ },
2737
+ {
2738
+ "ID": "SOL_DEFAULT",
2739
+ "COLLATERAL_TOKEN": "0x887847e42F068df9D9C248B355ad84DbC7527070",
2740
+ "SYMBOL": "SOL",
2741
+ "DECIMALS": 9,
2742
+ "ENABLED": true,
2743
+ "TOTAL_SUPPLY": "1000000000000000000000000000",
2744
+ "VIRTUAL_TOKEN_RESERVES": "1088659793814432989690721649",
2745
+ "VIRTUAL_COLLATERAL_RESERVES": "25257731958762886598",
2746
+ "FEE_BASIS_POINTS": "200",
2747
+ "FIXED_MIGRATION_FEE": "3000000000000000000",
2748
+ "POOL_CREATION_FEE": "1500000000000000000",
2749
+ "FIRST_BUY_FEE": "50000000000000000",
2750
+ "MC_UPPER_LIMIT": "331000000000000000000",
2751
+ "MC_LOWER_LIMIT": "330000000000000000000",
2752
+ "TOKENS_MIGRATION_THRESHOLD": "800000000000000000000000000",
2753
+ "TARGET_COLLECTION_AMOUNT": "70000000000000000000",
2754
+ "V4_LP_FEE": "20000",
2755
+ "V4_LIQUIDITY_CONFIG": "0x00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27660fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd5148fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdb930fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffde428fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1498fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecc30ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02e00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd5148fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdb868fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffde428fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecc30fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecc30ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5100ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff510000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000270600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
2756
+ }
2757
+ ]
2450
2758
  },
2451
2759
  "1.0.12": {
2452
2760
  "TOTAL_SUPPLY": "1000000000000000000000000000",
@@ -2506,6 +2814,104 @@ var chainConfigs = {
2506
2814
  "UNIVERSAL_ROUTER": "0x492E6456D9528771018DeB9E87ef7750EF184104",
2507
2815
  "V4_LP_FEE": "20000",
2508
2816
  "V4_LIQUIDITY_CONFIG": "0x00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27660fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcced0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd3780fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6278fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd92e8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe81300000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcced0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd36b8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6278fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecf50fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecf5000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000270600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
2817
+ },
2818
+ "2.1.0": {
2819
+ "TOTAL_SUPPLY": "1000000000000000000000000000",
2820
+ "VIRTUAL_TOKEN_RESERVES": "1088264899999999783900020736",
2821
+ "VIRTUAL_COLLATERAL_RESERVES": "902103736559999872",
2822
+ "FEE_BASIS_POINTS": "200",
2823
+ "DEX_FEE_BASIS_POINTS": "5000",
2824
+ "FIXED_MIGRATION_FEE": "100000000000000000",
2825
+ "POOL_CREATION_FEE": "50000000000000000",
2826
+ "FIRST_BUY_FEE": "1500000000000000",
2827
+ "MC_UPPER_LIMIT": "11835000000000000000",
2828
+ "MC_LOWER_LIMIT": "11795000000000000000",
2829
+ "TOKENS_MIGRATION_THRESHOLD": "799764393968807750154100378",
2830
+ "TARGET_ETH_COLLECTION_AMOUNT": "2500759732077910169",
2831
+ "TARGET_COLLECTION_AMOUNT": "2500759732077910169",
2832
+ "SIGNER": "0x0000000000000000000000000000000000000000",
2833
+ "DEPLOYER": "0x9575b2d4eeb082f777af9dae93702aea6d2769d3",
2834
+ "FACTORY_OWNER": "0x9575b2d4eeb082f777af9dae93702aea6d2769d3",
2835
+ "PROTOCOL_REWARD_RECIPIENT": "0x9575b2d4eeb082f777af9dae93702aea6d2769d3",
2836
+ "UNISWAP_V3_NONFUNGIBLE_POSITION_MANAGER": "0x27F971cb582BF9E50F397e4d29a5C7A34f11faA2",
2837
+ "QUOTER_V2": "0xC5290058841028F1614F3A6F0F5816cAd0df5E27",
2838
+ "SWAP_ROUTER_V2": "0x94cC0AaC535CCDB3C01d6787D6413C739ae12bc4",
2839
+ "UNISWAP_V2_ROUTER": "0x0000000000000000000000000000000000000000",
2840
+ "WETH": "0x4200000000000000000000000000000000000006",
2841
+ "V3_POOL_FEE": "10000",
2842
+ "TRADE_REFERRER_FEE_BPS": "1000",
2843
+ "CONTRACT_VERSION": "2.1.0",
2844
+ "V4_POOL_MANAGER": "0x05E73354cFDd6745C338b50BcFDfA3Aa6fA03408",
2845
+ "V4_POSITION_MANAGER": "0x4B2C77d209D3405F41a037Ec6c77F7F5b8e2ca80",
2846
+ "QUOTER_V4": "0x4A6513c898fe1B2d0E78d3b0e0A4a151589B1cBa",
2847
+ "PERMIT2": "0x000000000022D473030F116dDEE9F6B43aC78BA3",
2848
+ "UNIVERSAL_ROUTER": "0x492E6456D9528771018DeB9E87ef7750EF184104",
2849
+ "V4_LP_FEE": "20000",
2850
+ "V4_LIQUIDITY_CONFIG": "0x00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27660fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcced0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd3780fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6278fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd92e8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe81300000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcced0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd36b8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6278fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecf50fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecf5000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000270600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
2851
+ "COLLATERAL_TEMPLATES": [
2852
+ {
2853
+ "ID": "ETH_DEFAULT",
2854
+ "COLLATERAL_TOKEN": "0x0000000000000000000000000000000000000000",
2855
+ "SYMBOL": "ETH",
2856
+ "DECIMALS": 18,
2857
+ "ENABLED": true,
2858
+ "TOTAL_SUPPLY": "1000000000000000000000000000",
2859
+ "VIRTUAL_TOKEN_RESERVES": "1088264899999999783900020736",
2860
+ "VIRTUAL_COLLATERAL_RESERVES": "902103736559999872",
2861
+ "FEE_BASIS_POINTS": "200",
2862
+ "FIXED_MIGRATION_FEE": "100000000000000000",
2863
+ "POOL_CREATION_FEE": "50000000000000000",
2864
+ "FIRST_BUY_FEE": "1500000000000000",
2865
+ "MC_UPPER_LIMIT": "11835000000000000000",
2866
+ "MC_LOWER_LIMIT": "11795000000000000000",
2867
+ "TOKENS_MIGRATION_THRESHOLD": "799764393968807750154100378",
2868
+ "TARGET_ETH_COLLECTION_AMOUNT": "2500759732077910169",
2869
+ "TARGET_COLLECTION_AMOUNT": "2500759732077910169",
2870
+ "V4_LP_FEE": "20000",
2871
+ "V4_LIQUIDITY_CONFIG": "0x00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27660fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcced0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd3780fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6278fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd92e8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe81300000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcced0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd36b8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6278fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe4a80fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecf50fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecf5000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000270600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
2872
+ },
2873
+ {
2874
+ "ID": "USDC_DEFAULT",
2875
+ "COLLATERAL_TOKEN": "0x4967BC4b61B3259856D1A925900263AB2B64F6de",
2876
+ "SYMBOL": "USDC",
2877
+ "DECIMALS": 6,
2878
+ "ENABLED": true,
2879
+ "TOTAL_SUPPLY": "1000000000000000000000000000",
2880
+ "VIRTUAL_TOKEN_RESERVES": "1089005925584827574248030665",
2881
+ "VIRTUAL_COLLATERAL_RESERVES": "3251316663",
2882
+ "FEE_BASIS_POINTS": "200",
2883
+ "FIXED_MIGRATION_FEE": "359400000",
2884
+ "POOL_CREATION_FEE": "179700000",
2885
+ "FIRST_BUY_FEE": "5391000",
2886
+ "MC_UPPER_LIMIT": "42534990000",
2887
+ "MC_LOWER_LIMIT": "42391230000",
2888
+ "TOKENS_MIGRATION_THRESHOLD": "800000000000000000000000000",
2889
+ "TARGET_USDC_COLLECTION_AMOUNT": "9000000000",
2890
+ "TARGET_COLLECTION_AMOUNT": "9000000000",
2891
+ "V4_LP_FEE": "20000",
2892
+ "V4_LIQUIDITY_CONFIG": "0x00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27660fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9d770fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa4020fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa6a50fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa9b88fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5320fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb89080000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9d770fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa3e90fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa6a50fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5320fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5320fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbd7f0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbd7f000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000270600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
2893
+ },
2894
+ {
2895
+ "ID": "SOL_DEFAULT",
2896
+ "COLLATERAL_TOKEN": "0x887847e42F068df9D9C248B355ad84DbC7527070",
2897
+ "SYMBOL": "SOL",
2898
+ "DECIMALS": 9,
2899
+ "ENABLED": true,
2900
+ "TOTAL_SUPPLY": "1000000000000000000000000000",
2901
+ "VIRTUAL_TOKEN_RESERVES": "1088659793814432989690721649",
2902
+ "VIRTUAL_COLLATERAL_RESERVES": "25257731958762886598",
2903
+ "FEE_BASIS_POINTS": "200",
2904
+ "FIXED_MIGRATION_FEE": "3000000000000000000",
2905
+ "POOL_CREATION_FEE": "1500000000000000000",
2906
+ "FIRST_BUY_FEE": "50000000000000000",
2907
+ "MC_UPPER_LIMIT": "331000000000000000000",
2908
+ "MC_LOWER_LIMIT": "330000000000000000000",
2909
+ "TOKENS_MIGRATION_THRESHOLD": "800000000000000000000000000",
2910
+ "TARGET_COLLECTION_AMOUNT": "70000000000000000000",
2911
+ "V4_LP_FEE": "20000",
2912
+ "V4_LIQUIDITY_CONFIG": "0x00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27660fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd5148fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdb930fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffde428fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1498fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecc30ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02e00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd5148fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdb868fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffde428fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecc30fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecc30ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5100ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff510000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000270600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
2913
+ }
2914
+ ]
2509
2915
  }
2510
2916
  }
2511
2917
  };