@merkl/api 1.3.64 → 1.3.66
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/dist/src/eden/index.d.ts +30 -803
- package/dist/src/engine/deprecated/erc20SubTypeProcessors/helpers/hardcoded.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/factories.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/index.d.ts +0 -1
- package/dist/src/engine/implementations/Erc20/subTypes/index.js.map +1 -1
- package/dist/src/engine/implementations/MultiLendBorrow/tvl.js.map +1 -1
- package/dist/src/engine/tvl/engineTvl.service.d.ts +3 -22
- package/dist/src/engine/tvl/engineTvl.service.js.map +1 -1
- package/dist/src/engine/tvl/factory.d.ts +1 -1
- package/dist/src/engine/tvl/factory.js.map +1 -1
- package/dist/src/index.d.ts +385 -1165
- package/dist/src/jobs/update-v3-caches.js.map +1 -1
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +10 -10
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +237 -237
- package/dist/src/modules/v4/dynamicData/dynamicData.service.js.map +1 -1
- package/dist/src/modules/v4/merklRoot/merklRoot.controller.d.ts +37 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.controller.js.map +1 -1
- package/dist/src/modules/v4/merklRoot/merklRoot.repository.d.ts +8 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.repository.js.map +1 -1
- package/dist/src/modules/v4/merklRoot/merklRoot.service.d.ts +11 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.service.js.map +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +21 -21
- package/dist/src/modules/v4/programPayload/programPayload.model.d.ts +1 -1
- package/dist/src/modules/v4/router.d.ts +359 -322
- package/dist/src/modules/v4/token/token.service.d.ts +3 -18
- package/dist/src/modules/v4/token/token.service.js.map +1 -1
- package/dist/src/routes/v3/router.d.ts +0 -817
- package/dist/src/routes/v3/router.js.map +1 -1
- package/package.json +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/engineTVL/tvl.d.ts +0 -6
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/engineTVL/tvl.js.map +0 -1
- package/dist/src/routes/v3/uniswapv4.d.ts +0 -866
- package/dist/src/routes/v3/uniswapv4.js.map +0 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -1141,809 +1141,6 @@ declare const eden: {
|
|
1141
1141
|
};
|
1142
1142
|
}>>;
|
1143
1143
|
};
|
1144
|
-
uniswapv4: ((params: {
|
1145
|
-
chainId: string | number;
|
1146
|
-
}) => {
|
1147
|
-
get: (options?: {
|
1148
|
-
fetch?: RequestInit | undefined;
|
1149
|
-
headers?: Record<string, unknown> | undefined;
|
1150
|
-
query?: Record<string, unknown> | undefined;
|
1151
|
-
} | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
1152
|
-
200: {
|
1153
|
-
[x: string]: {
|
1154
|
-
chainId: number;
|
1155
|
-
currency0: string;
|
1156
|
-
currency1: string;
|
1157
|
-
decimalsCurrency0: number;
|
1158
|
-
decimalsCurrency1: number;
|
1159
|
-
hooks: string;
|
1160
|
-
lpFee: number;
|
1161
|
-
poolId: string;
|
1162
|
-
symbolCurrency0: string;
|
1163
|
-
symbolCurrency1: string;
|
1164
|
-
tickSpacing: number;
|
1165
|
-
};
|
1166
|
-
} | undefined;
|
1167
|
-
422: {
|
1168
|
-
type: "validation";
|
1169
|
-
on: string;
|
1170
|
-
summary?: string | undefined;
|
1171
|
-
message?: string | undefined;
|
1172
|
-
found?: unknown;
|
1173
|
-
property?: string | undefined;
|
1174
|
-
expected?: string | undefined;
|
1175
|
-
};
|
1176
|
-
}>>;
|
1177
|
-
}) & {
|
1178
|
-
get: (options?: {
|
1179
|
-
fetch?: RequestInit | undefined;
|
1180
|
-
headers?: Record<string, unknown> | undefined;
|
1181
|
-
query?: Record<string, unknown> | undefined;
|
1182
|
-
} | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
1183
|
-
200: {
|
1184
|
-
1?: Record<string, {
|
1185
|
-
chainId: number;
|
1186
|
-
currency0: string;
|
1187
|
-
currency1: string;
|
1188
|
-
decimalsCurrency0: number;
|
1189
|
-
decimalsCurrency1: number;
|
1190
|
-
hooks: string;
|
1191
|
-
lpFee: number;
|
1192
|
-
poolId: string;
|
1193
|
-
symbolCurrency0: string;
|
1194
|
-
symbolCurrency1: string;
|
1195
|
-
tickSpacing: number;
|
1196
|
-
}> | undefined;
|
1197
|
-
10?: Record<string, {
|
1198
|
-
chainId: number;
|
1199
|
-
currency0: string;
|
1200
|
-
currency1: string;
|
1201
|
-
decimalsCurrency0: number;
|
1202
|
-
decimalsCurrency1: number;
|
1203
|
-
hooks: string;
|
1204
|
-
lpFee: number;
|
1205
|
-
poolId: string;
|
1206
|
-
symbolCurrency0: string;
|
1207
|
-
symbolCurrency1: string;
|
1208
|
-
tickSpacing: number;
|
1209
|
-
}> | undefined;
|
1210
|
-
100?: Record<string, {
|
1211
|
-
chainId: number;
|
1212
|
-
currency0: string;
|
1213
|
-
currency1: string;
|
1214
|
-
decimalsCurrency0: number;
|
1215
|
-
decimalsCurrency1: number;
|
1216
|
-
hooks: string;
|
1217
|
-
lpFee: number;
|
1218
|
-
poolId: string;
|
1219
|
-
symbolCurrency0: string;
|
1220
|
-
symbolCurrency1: string;
|
1221
|
-
tickSpacing: number;
|
1222
|
-
}> | undefined;
|
1223
|
-
10242?: Record<string, {
|
1224
|
-
chainId: number;
|
1225
|
-
currency0: string;
|
1226
|
-
currency1: string;
|
1227
|
-
decimalsCurrency0: number;
|
1228
|
-
decimalsCurrency1: number;
|
1229
|
-
hooks: string;
|
1230
|
-
lpFee: number;
|
1231
|
-
poolId: string;
|
1232
|
-
symbolCurrency0: string;
|
1233
|
-
symbolCurrency1: string;
|
1234
|
-
tickSpacing: number;
|
1235
|
-
}> | undefined;
|
1236
|
-
108?: Record<string, {
|
1237
|
-
chainId: number;
|
1238
|
-
currency0: string;
|
1239
|
-
currency1: string;
|
1240
|
-
decimalsCurrency0: number;
|
1241
|
-
decimalsCurrency1: number;
|
1242
|
-
hooks: string;
|
1243
|
-
lpFee: number;
|
1244
|
-
poolId: string;
|
1245
|
-
symbolCurrency0: string;
|
1246
|
-
symbolCurrency1: string;
|
1247
|
-
tickSpacing: number;
|
1248
|
-
}> | undefined;
|
1249
|
-
1101?: Record<string, {
|
1250
|
-
chainId: number;
|
1251
|
-
currency0: string;
|
1252
|
-
currency1: string;
|
1253
|
-
decimalsCurrency0: number;
|
1254
|
-
decimalsCurrency1: number;
|
1255
|
-
hooks: string;
|
1256
|
-
lpFee: number;
|
1257
|
-
poolId: string;
|
1258
|
-
symbolCurrency0: string;
|
1259
|
-
symbolCurrency1: string;
|
1260
|
-
tickSpacing: number;
|
1261
|
-
}> | undefined;
|
1262
|
-
1116?: Record<string, {
|
1263
|
-
chainId: number;
|
1264
|
-
currency0: string;
|
1265
|
-
currency1: string;
|
1266
|
-
decimalsCurrency0: number;
|
1267
|
-
decimalsCurrency1: number;
|
1268
|
-
hooks: string;
|
1269
|
-
lpFee: number;
|
1270
|
-
poolId: string;
|
1271
|
-
symbolCurrency0: string;
|
1272
|
-
symbolCurrency1: string;
|
1273
|
-
tickSpacing: number;
|
1274
|
-
}> | undefined;
|
1275
|
-
1135?: Record<string, {
|
1276
|
-
chainId: number;
|
1277
|
-
currency0: string;
|
1278
|
-
currency1: string;
|
1279
|
-
decimalsCurrency0: number;
|
1280
|
-
decimalsCurrency1: number;
|
1281
|
-
hooks: string;
|
1282
|
-
lpFee: number;
|
1283
|
-
poolId: string;
|
1284
|
-
symbolCurrency0: string;
|
1285
|
-
symbolCurrency1: string;
|
1286
|
-
tickSpacing: number;
|
1287
|
-
}> | undefined;
|
1288
|
-
122?: Record<string, {
|
1289
|
-
chainId: number;
|
1290
|
-
currency0: string;
|
1291
|
-
currency1: string;
|
1292
|
-
decimalsCurrency0: number;
|
1293
|
-
decimalsCurrency1: number;
|
1294
|
-
hooks: string;
|
1295
|
-
lpFee: number;
|
1296
|
-
poolId: string;
|
1297
|
-
symbolCurrency0: string;
|
1298
|
-
symbolCurrency1: string;
|
1299
|
-
tickSpacing: number;
|
1300
|
-
}> | undefined;
|
1301
|
-
1284?: Record<string, {
|
1302
|
-
chainId: number;
|
1303
|
-
currency0: string;
|
1304
|
-
currency1: string;
|
1305
|
-
decimalsCurrency0: number;
|
1306
|
-
decimalsCurrency1: number;
|
1307
|
-
hooks: string;
|
1308
|
-
lpFee: number;
|
1309
|
-
poolId: string;
|
1310
|
-
symbolCurrency0: string;
|
1311
|
-
symbolCurrency1: string;
|
1312
|
-
tickSpacing: number;
|
1313
|
-
}> | undefined;
|
1314
|
-
130?: Record<string, {
|
1315
|
-
chainId: number;
|
1316
|
-
currency0: string;
|
1317
|
-
currency1: string;
|
1318
|
-
decimalsCurrency0: number;
|
1319
|
-
decimalsCurrency1: number;
|
1320
|
-
hooks: string;
|
1321
|
-
lpFee: number;
|
1322
|
-
poolId: string;
|
1323
|
-
symbolCurrency0: string;
|
1324
|
-
symbolCurrency1: string;
|
1325
|
-
tickSpacing: number;
|
1326
|
-
}> | undefined;
|
1327
|
-
1329?: Record<string, {
|
1328
|
-
chainId: number;
|
1329
|
-
currency0: string;
|
1330
|
-
currency1: string;
|
1331
|
-
decimalsCurrency0: number;
|
1332
|
-
decimalsCurrency1: number;
|
1333
|
-
hooks: string;
|
1334
|
-
lpFee: number;
|
1335
|
-
poolId: string;
|
1336
|
-
symbolCurrency0: string;
|
1337
|
-
symbolCurrency1: string;
|
1338
|
-
tickSpacing: number;
|
1339
|
-
}> | undefined;
|
1340
|
-
13371?: Record<string, {
|
1341
|
-
chainId: number;
|
1342
|
-
currency0: string;
|
1343
|
-
currency1: string;
|
1344
|
-
decimalsCurrency0: number;
|
1345
|
-
decimalsCurrency1: number;
|
1346
|
-
hooks: string;
|
1347
|
-
lpFee: number;
|
1348
|
-
poolId: string;
|
1349
|
-
symbolCurrency0: string;
|
1350
|
-
symbolCurrency1: string;
|
1351
|
-
tickSpacing: number;
|
1352
|
-
}> | undefined;
|
1353
|
-
137?: Record<string, {
|
1354
|
-
chainId: number;
|
1355
|
-
currency0: string;
|
1356
|
-
currency1: string;
|
1357
|
-
decimalsCurrency0: number;
|
1358
|
-
decimalsCurrency1: number;
|
1359
|
-
hooks: string;
|
1360
|
-
lpFee: number;
|
1361
|
-
poolId: string;
|
1362
|
-
symbolCurrency0: string;
|
1363
|
-
symbolCurrency1: string;
|
1364
|
-
tickSpacing: number;
|
1365
|
-
}> | undefined;
|
1366
|
-
1440000?: Record<string, {
|
1367
|
-
chainId: number;
|
1368
|
-
currency0: string;
|
1369
|
-
currency1: string;
|
1370
|
-
decimalsCurrency0: number;
|
1371
|
-
decimalsCurrency1: number;
|
1372
|
-
hooks: string;
|
1373
|
-
lpFee: number;
|
1374
|
-
poolId: string;
|
1375
|
-
symbolCurrency0: string;
|
1376
|
-
symbolCurrency1: string;
|
1377
|
-
tickSpacing: number;
|
1378
|
-
}> | undefined;
|
1379
|
-
146?: Record<string, {
|
1380
|
-
chainId: number;
|
1381
|
-
currency0: string;
|
1382
|
-
currency1: string;
|
1383
|
-
decimalsCurrency0: number;
|
1384
|
-
decimalsCurrency1: number;
|
1385
|
-
hooks: string;
|
1386
|
-
lpFee: number;
|
1387
|
-
poolId: string;
|
1388
|
-
symbolCurrency0: string;
|
1389
|
-
symbolCurrency1: string;
|
1390
|
-
tickSpacing: number;
|
1391
|
-
}> | undefined;
|
1392
|
-
151?: Record<string, {
|
1393
|
-
chainId: number;
|
1394
|
-
currency0: string;
|
1395
|
-
currency1: string;
|
1396
|
-
decimalsCurrency0: number;
|
1397
|
-
decimalsCurrency1: number;
|
1398
|
-
hooks: string;
|
1399
|
-
lpFee: number;
|
1400
|
-
poolId: string;
|
1401
|
-
symbolCurrency0: string;
|
1402
|
-
symbolCurrency1: string;
|
1403
|
-
tickSpacing: number;
|
1404
|
-
}> | undefined;
|
1405
|
-
167000?: Record<string, {
|
1406
|
-
chainId: number;
|
1407
|
-
currency0: string;
|
1408
|
-
currency1: string;
|
1409
|
-
decimalsCurrency0: number;
|
1410
|
-
decimalsCurrency1: number;
|
1411
|
-
hooks: string;
|
1412
|
-
lpFee: number;
|
1413
|
-
poolId: string;
|
1414
|
-
symbolCurrency0: string;
|
1415
|
-
symbolCurrency1: string;
|
1416
|
-
tickSpacing: number;
|
1417
|
-
}> | undefined;
|
1418
|
-
169?: Record<string, {
|
1419
|
-
chainId: number;
|
1420
|
-
currency0: string;
|
1421
|
-
currency1: string;
|
1422
|
-
decimalsCurrency0: number;
|
1423
|
-
decimalsCurrency1: number;
|
1424
|
-
hooks: string;
|
1425
|
-
lpFee: number;
|
1426
|
-
poolId: string;
|
1427
|
-
symbolCurrency0: string;
|
1428
|
-
symbolCurrency1: string;
|
1429
|
-
tickSpacing: number;
|
1430
|
-
}> | undefined;
|
1431
|
-
1868?: Record<string, {
|
1432
|
-
chainId: number;
|
1433
|
-
currency0: string;
|
1434
|
-
currency1: string;
|
1435
|
-
decimalsCurrency0: number;
|
1436
|
-
decimalsCurrency1: number;
|
1437
|
-
hooks: string;
|
1438
|
-
lpFee: number;
|
1439
|
-
poolId: string;
|
1440
|
-
symbolCurrency0: string;
|
1441
|
-
symbolCurrency1: string;
|
1442
|
-
tickSpacing: number;
|
1443
|
-
}> | undefined;
|
1444
|
-
1923?: Record<string, {
|
1445
|
-
chainId: number;
|
1446
|
-
currency0: string;
|
1447
|
-
currency1: string;
|
1448
|
-
decimalsCurrency0: number;
|
1449
|
-
decimalsCurrency1: number;
|
1450
|
-
hooks: string;
|
1451
|
-
lpFee: number;
|
1452
|
-
poolId: string;
|
1453
|
-
symbolCurrency0: string;
|
1454
|
-
symbolCurrency1: string;
|
1455
|
-
tickSpacing: number;
|
1456
|
-
}> | undefined;
|
1457
|
-
196?: Record<string, {
|
1458
|
-
chainId: number;
|
1459
|
-
currency0: string;
|
1460
|
-
currency1: string;
|
1461
|
-
decimalsCurrency0: number;
|
1462
|
-
decimalsCurrency1: number;
|
1463
|
-
hooks: string;
|
1464
|
-
lpFee: number;
|
1465
|
-
poolId: string;
|
1466
|
-
symbolCurrency0: string;
|
1467
|
-
symbolCurrency1: string;
|
1468
|
-
tickSpacing: number;
|
1469
|
-
}> | undefined;
|
1470
|
-
2020?: Record<string, {
|
1471
|
-
chainId: number;
|
1472
|
-
currency0: string;
|
1473
|
-
currency1: string;
|
1474
|
-
decimalsCurrency0: number;
|
1475
|
-
decimalsCurrency1: number;
|
1476
|
-
hooks: string;
|
1477
|
-
lpFee: number;
|
1478
|
-
poolId: string;
|
1479
|
-
symbolCurrency0: string;
|
1480
|
-
symbolCurrency1: string;
|
1481
|
-
tickSpacing: number;
|
1482
|
-
}> | undefined;
|
1483
|
-
2046399126?: Record<string, {
|
1484
|
-
chainId: number;
|
1485
|
-
currency0: string;
|
1486
|
-
currency1: string;
|
1487
|
-
decimalsCurrency0: number;
|
1488
|
-
decimalsCurrency1: number;
|
1489
|
-
hooks: string;
|
1490
|
-
lpFee: number;
|
1491
|
-
poolId: string;
|
1492
|
-
symbolCurrency0: string;
|
1493
|
-
symbolCurrency1: string;
|
1494
|
-
tickSpacing: number;
|
1495
|
-
}> | undefined;
|
1496
|
-
21000000?: Record<string, {
|
1497
|
-
chainId: number;
|
1498
|
-
currency0: string;
|
1499
|
-
currency1: string;
|
1500
|
-
decimalsCurrency0: number;
|
1501
|
-
decimalsCurrency1: number;
|
1502
|
-
hooks: string;
|
1503
|
-
lpFee: number;
|
1504
|
-
poolId: string;
|
1505
|
-
symbolCurrency0: string;
|
1506
|
-
symbolCurrency1: string;
|
1507
|
-
tickSpacing: number;
|
1508
|
-
}> | undefined;
|
1509
|
-
239?: Record<string, {
|
1510
|
-
chainId: number;
|
1511
|
-
currency0: string;
|
1512
|
-
currency1: string;
|
1513
|
-
decimalsCurrency0: number;
|
1514
|
-
decimalsCurrency1: number;
|
1515
|
-
hooks: string;
|
1516
|
-
lpFee: number;
|
1517
|
-
poolId: string;
|
1518
|
-
symbolCurrency0: string;
|
1519
|
-
symbolCurrency1: string;
|
1520
|
-
tickSpacing: number;
|
1521
|
-
}> | undefined;
|
1522
|
-
250?: Record<string, {
|
1523
|
-
chainId: number;
|
1524
|
-
currency0: string;
|
1525
|
-
currency1: string;
|
1526
|
-
decimalsCurrency0: number;
|
1527
|
-
decimalsCurrency1: number;
|
1528
|
-
hooks: string;
|
1529
|
-
lpFee: number;
|
1530
|
-
poolId: string;
|
1531
|
-
symbolCurrency0: string;
|
1532
|
-
symbolCurrency1: string;
|
1533
|
-
tickSpacing: number;
|
1534
|
-
}> | undefined;
|
1535
|
-
252?: Record<string, {
|
1536
|
-
chainId: number;
|
1537
|
-
currency0: string;
|
1538
|
-
currency1: string;
|
1539
|
-
decimalsCurrency0: number;
|
1540
|
-
decimalsCurrency1: number;
|
1541
|
-
hooks: string;
|
1542
|
-
lpFee: number;
|
1543
|
-
poolId: string;
|
1544
|
-
symbolCurrency0: string;
|
1545
|
-
symbolCurrency1: string;
|
1546
|
-
tickSpacing: number;
|
1547
|
-
}> | undefined;
|
1548
|
-
30?: Record<string, {
|
1549
|
-
chainId: number;
|
1550
|
-
currency0: string;
|
1551
|
-
currency1: string;
|
1552
|
-
decimalsCurrency0: number;
|
1553
|
-
decimalsCurrency1: number;
|
1554
|
-
hooks: string;
|
1555
|
-
lpFee: number;
|
1556
|
-
poolId: string;
|
1557
|
-
symbolCurrency0: string;
|
1558
|
-
symbolCurrency1: string;
|
1559
|
-
tickSpacing: number;
|
1560
|
-
}> | undefined;
|
1561
|
-
324?: Record<string, {
|
1562
|
-
chainId: number;
|
1563
|
-
currency0: string;
|
1564
|
-
currency1: string;
|
1565
|
-
decimalsCurrency0: number;
|
1566
|
-
decimalsCurrency1: number;
|
1567
|
-
hooks: string;
|
1568
|
-
lpFee: number;
|
1569
|
-
poolId: string;
|
1570
|
-
symbolCurrency0: string;
|
1571
|
-
symbolCurrency1: string;
|
1572
|
-
tickSpacing: number;
|
1573
|
-
}> | undefined;
|
1574
|
-
33139?: Record<string, {
|
1575
|
-
chainId: number;
|
1576
|
-
currency0: string;
|
1577
|
-
currency1: string;
|
1578
|
-
decimalsCurrency0: number;
|
1579
|
-
decimalsCurrency1: number;
|
1580
|
-
hooks: string;
|
1581
|
-
lpFee: number;
|
1582
|
-
poolId: string;
|
1583
|
-
symbolCurrency0: string;
|
1584
|
-
symbolCurrency1: string;
|
1585
|
-
tickSpacing: number;
|
1586
|
-
}> | undefined;
|
1587
|
-
34443?: Record<string, {
|
1588
|
-
chainId: number;
|
1589
|
-
currency0: string;
|
1590
|
-
currency1: string;
|
1591
|
-
decimalsCurrency0: number;
|
1592
|
-
decimalsCurrency1: number;
|
1593
|
-
hooks: string;
|
1594
|
-
lpFee: number;
|
1595
|
-
poolId: string;
|
1596
|
-
symbolCurrency0: string;
|
1597
|
-
symbolCurrency1: string;
|
1598
|
-
tickSpacing: number;
|
1599
|
-
}> | undefined;
|
1600
|
-
42161?: Record<string, {
|
1601
|
-
chainId: number;
|
1602
|
-
currency0: string;
|
1603
|
-
currency1: string;
|
1604
|
-
decimalsCurrency0: number;
|
1605
|
-
decimalsCurrency1: number;
|
1606
|
-
hooks: string;
|
1607
|
-
lpFee: number;
|
1608
|
-
poolId: string;
|
1609
|
-
symbolCurrency0: string;
|
1610
|
-
symbolCurrency1: string;
|
1611
|
-
tickSpacing: number;
|
1612
|
-
}> | undefined;
|
1613
|
-
42220?: Record<string, {
|
1614
|
-
chainId: number;
|
1615
|
-
currency0: string;
|
1616
|
-
currency1: string;
|
1617
|
-
decimalsCurrency0: number;
|
1618
|
-
decimalsCurrency1: number;
|
1619
|
-
hooks: string;
|
1620
|
-
lpFee: number;
|
1621
|
-
poolId: string;
|
1622
|
-
symbolCurrency0: string;
|
1623
|
-
symbolCurrency1: string;
|
1624
|
-
tickSpacing: number;
|
1625
|
-
}> | undefined;
|
1626
|
-
42793?: Record<string, {
|
1627
|
-
chainId: number;
|
1628
|
-
currency0: string;
|
1629
|
-
currency1: string;
|
1630
|
-
decimalsCurrency0: number;
|
1631
|
-
decimalsCurrency1: number;
|
1632
|
-
hooks: string;
|
1633
|
-
lpFee: number;
|
1634
|
-
poolId: string;
|
1635
|
-
symbolCurrency0: string;
|
1636
|
-
symbolCurrency1: string;
|
1637
|
-
tickSpacing: number;
|
1638
|
-
}> | undefined;
|
1639
|
-
43111?: Record<string, {
|
1640
|
-
chainId: number;
|
1641
|
-
currency0: string;
|
1642
|
-
currency1: string;
|
1643
|
-
decimalsCurrency0: number;
|
1644
|
-
decimalsCurrency1: number;
|
1645
|
-
hooks: string;
|
1646
|
-
lpFee: number;
|
1647
|
-
poolId: string;
|
1648
|
-
symbolCurrency0: string;
|
1649
|
-
symbolCurrency1: string;
|
1650
|
-
tickSpacing: number;
|
1651
|
-
}> | undefined;
|
1652
|
-
43114?: Record<string, {
|
1653
|
-
chainId: number;
|
1654
|
-
currency0: string;
|
1655
|
-
currency1: string;
|
1656
|
-
decimalsCurrency0: number;
|
1657
|
-
decimalsCurrency1: number;
|
1658
|
-
hooks: string;
|
1659
|
-
lpFee: number;
|
1660
|
-
poolId: string;
|
1661
|
-
symbolCurrency0: string;
|
1662
|
-
symbolCurrency1: string;
|
1663
|
-
tickSpacing: number;
|
1664
|
-
}> | undefined;
|
1665
|
-
480?: Record<string, {
|
1666
|
-
chainId: number;
|
1667
|
-
currency0: string;
|
1668
|
-
currency1: string;
|
1669
|
-
decimalsCurrency0: number;
|
1670
|
-
decimalsCurrency1: number;
|
1671
|
-
hooks: string;
|
1672
|
-
lpFee: number;
|
1673
|
-
poolId: string;
|
1674
|
-
symbolCurrency0: string;
|
1675
|
-
symbolCurrency1: string;
|
1676
|
-
tickSpacing: number;
|
1677
|
-
}> | undefined;
|
1678
|
-
48900?: Record<string, {
|
1679
|
-
chainId: number;
|
1680
|
-
currency0: string;
|
1681
|
-
currency1: string;
|
1682
|
-
decimalsCurrency0: number;
|
1683
|
-
decimalsCurrency1: number;
|
1684
|
-
hooks: string;
|
1685
|
-
lpFee: number;
|
1686
|
-
poolId: string;
|
1687
|
-
symbolCurrency0: string;
|
1688
|
-
symbolCurrency1: string;
|
1689
|
-
tickSpacing: number;
|
1690
|
-
}> | undefined;
|
1691
|
-
50?: Record<string, {
|
1692
|
-
chainId: number;
|
1693
|
-
currency0: string;
|
1694
|
-
currency1: string;
|
1695
|
-
decimalsCurrency0: number;
|
1696
|
-
decimalsCurrency1: number;
|
1697
|
-
hooks: string;
|
1698
|
-
lpFee: number;
|
1699
|
-
poolId: string;
|
1700
|
-
symbolCurrency0: string;
|
1701
|
-
symbolCurrency1: string;
|
1702
|
-
tickSpacing: number;
|
1703
|
-
}> | undefined;
|
1704
|
-
5000?: Record<string, {
|
1705
|
-
chainId: number;
|
1706
|
-
currency0: string;
|
1707
|
-
currency1: string;
|
1708
|
-
decimalsCurrency0: number;
|
1709
|
-
decimalsCurrency1: number;
|
1710
|
-
hooks: string;
|
1711
|
-
lpFee: number;
|
1712
|
-
poolId: string;
|
1713
|
-
symbolCurrency0: string;
|
1714
|
-
symbolCurrency1: string;
|
1715
|
-
tickSpacing: number;
|
1716
|
-
}> | undefined;
|
1717
|
-
534352?: Record<string, {
|
1718
|
-
chainId: number;
|
1719
|
-
currency0: string;
|
1720
|
-
currency1: string;
|
1721
|
-
decimalsCurrency0: number;
|
1722
|
-
decimalsCurrency1: number;
|
1723
|
-
hooks: string;
|
1724
|
-
lpFee: number;
|
1725
|
-
poolId: string;
|
1726
|
-
symbolCurrency0: string;
|
1727
|
-
symbolCurrency1: string;
|
1728
|
-
tickSpacing: number;
|
1729
|
-
}> | undefined;
|
1730
|
-
5464?: Record<string, {
|
1731
|
-
chainId: number;
|
1732
|
-
currency0: string;
|
1733
|
-
currency1: string;
|
1734
|
-
decimalsCurrency0: number;
|
1735
|
-
decimalsCurrency1: number;
|
1736
|
-
hooks: string;
|
1737
|
-
lpFee: number;
|
1738
|
-
poolId: string;
|
1739
|
-
symbolCurrency0: string;
|
1740
|
-
symbolCurrency1: string;
|
1741
|
-
tickSpacing: number;
|
1742
|
-
}> | undefined;
|
1743
|
-
56?: Record<string, {
|
1744
|
-
chainId: number;
|
1745
|
-
currency0: string;
|
1746
|
-
currency1: string;
|
1747
|
-
decimalsCurrency0: number;
|
1748
|
-
decimalsCurrency1: number;
|
1749
|
-
hooks: string;
|
1750
|
-
lpFee: number;
|
1751
|
-
poolId: string;
|
1752
|
-
symbolCurrency0: string;
|
1753
|
-
symbolCurrency1: string;
|
1754
|
-
tickSpacing: number;
|
1755
|
-
}> | undefined;
|
1756
|
-
57073?: Record<string, {
|
1757
|
-
chainId: number;
|
1758
|
-
currency0: string;
|
1759
|
-
currency1: string;
|
1760
|
-
decimalsCurrency0: number;
|
1761
|
-
decimalsCurrency1: number;
|
1762
|
-
hooks: string;
|
1763
|
-
lpFee: number;
|
1764
|
-
poolId: string;
|
1765
|
-
symbolCurrency0: string;
|
1766
|
-
symbolCurrency1: string;
|
1767
|
-
tickSpacing: number;
|
1768
|
-
}> | undefined;
|
1769
|
-
59144?: Record<string, {
|
1770
|
-
chainId: number;
|
1771
|
-
currency0: string;
|
1772
|
-
currency1: string;
|
1773
|
-
decimalsCurrency0: number;
|
1774
|
-
decimalsCurrency1: number;
|
1775
|
-
hooks: string;
|
1776
|
-
lpFee: number;
|
1777
|
-
poolId: string;
|
1778
|
-
symbolCurrency0: string;
|
1779
|
-
symbolCurrency1: string;
|
1780
|
-
tickSpacing: number;
|
1781
|
-
}> | undefined;
|
1782
|
-
592?: Record<string, {
|
1783
|
-
chainId: number;
|
1784
|
-
currency0: string;
|
1785
|
-
currency1: string;
|
1786
|
-
decimalsCurrency0: number;
|
1787
|
-
decimalsCurrency1: number;
|
1788
|
-
hooks: string;
|
1789
|
-
lpFee: number;
|
1790
|
-
poolId: string;
|
1791
|
-
symbolCurrency0: string;
|
1792
|
-
symbolCurrency1: string;
|
1793
|
-
tickSpacing: number;
|
1794
|
-
}> | undefined;
|
1795
|
-
60808?: Record<string, {
|
1796
|
-
chainId: number;
|
1797
|
-
currency0: string;
|
1798
|
-
currency1: string;
|
1799
|
-
decimalsCurrency0: number;
|
1800
|
-
decimalsCurrency1: number;
|
1801
|
-
hooks: string;
|
1802
|
-
lpFee: number;
|
1803
|
-
poolId: string;
|
1804
|
-
symbolCurrency0: string;
|
1805
|
-
symbolCurrency1: string;
|
1806
|
-
tickSpacing: number;
|
1807
|
-
}> | undefined;
|
1808
|
-
6900?: Record<string, {
|
1809
|
-
chainId: number;
|
1810
|
-
currency0: string;
|
1811
|
-
currency1: string;
|
1812
|
-
decimalsCurrency0: number;
|
1813
|
-
decimalsCurrency1: number;
|
1814
|
-
hooks: string;
|
1815
|
-
lpFee: number;
|
1816
|
-
poolId: string;
|
1817
|
-
symbolCurrency0: string;
|
1818
|
-
symbolCurrency1: string;
|
1819
|
-
tickSpacing: number;
|
1820
|
-
}> | undefined;
|
1821
|
-
747?: Record<string, {
|
1822
|
-
chainId: number;
|
1823
|
-
currency0: string;
|
1824
|
-
currency1: string;
|
1825
|
-
decimalsCurrency0: number;
|
1826
|
-
decimalsCurrency1: number;
|
1827
|
-
hooks: string;
|
1828
|
-
lpFee: number;
|
1829
|
-
poolId: string;
|
1830
|
-
symbolCurrency0: string;
|
1831
|
-
symbolCurrency1: string;
|
1832
|
-
tickSpacing: number;
|
1833
|
-
}> | undefined;
|
1834
|
-
747474?: Record<string, {
|
1835
|
-
chainId: number;
|
1836
|
-
currency0: string;
|
1837
|
-
currency1: string;
|
1838
|
-
decimalsCurrency0: number;
|
1839
|
-
decimalsCurrency1: number;
|
1840
|
-
hooks: string;
|
1841
|
-
lpFee: number;
|
1842
|
-
poolId: string;
|
1843
|
-
symbolCurrency0: string;
|
1844
|
-
symbolCurrency1: string;
|
1845
|
-
tickSpacing: number;
|
1846
|
-
}> | undefined;
|
1847
|
-
80094?: Record<string, {
|
1848
|
-
chainId: number;
|
1849
|
-
currency0: string;
|
1850
|
-
currency1: string;
|
1851
|
-
decimalsCurrency0: number;
|
1852
|
-
decimalsCurrency1: number;
|
1853
|
-
hooks: string;
|
1854
|
-
lpFee: number;
|
1855
|
-
poolId: string;
|
1856
|
-
symbolCurrency0: string;
|
1857
|
-
symbolCurrency1: string;
|
1858
|
-
tickSpacing: number;
|
1859
|
-
}> | undefined;
|
1860
|
-
81457?: Record<string, {
|
1861
|
-
chainId: number;
|
1862
|
-
currency0: string;
|
1863
|
-
currency1: string;
|
1864
|
-
decimalsCurrency0: number;
|
1865
|
-
decimalsCurrency1: number;
|
1866
|
-
hooks: string;
|
1867
|
-
lpFee: number;
|
1868
|
-
poolId: string;
|
1869
|
-
symbolCurrency0: string;
|
1870
|
-
symbolCurrency1: string;
|
1871
|
-
tickSpacing: number;
|
1872
|
-
}> | undefined;
|
1873
|
-
8453?: Record<string, {
|
1874
|
-
chainId: number;
|
1875
|
-
currency0: string;
|
1876
|
-
currency1: string;
|
1877
|
-
decimalsCurrency0: number;
|
1878
|
-
decimalsCurrency1: number;
|
1879
|
-
hooks: string;
|
1880
|
-
lpFee: number;
|
1881
|
-
poolId: string;
|
1882
|
-
symbolCurrency0: string;
|
1883
|
-
symbolCurrency1: string;
|
1884
|
-
tickSpacing: number;
|
1885
|
-
}> | undefined;
|
1886
|
-
98866?: Record<string, {
|
1887
|
-
chainId: number;
|
1888
|
-
currency0: string;
|
1889
|
-
currency1: string;
|
1890
|
-
decimalsCurrency0: number;
|
1891
|
-
decimalsCurrency1: number;
|
1892
|
-
hooks: string;
|
1893
|
-
lpFee: number;
|
1894
|
-
poolId: string;
|
1895
|
-
symbolCurrency0: string;
|
1896
|
-
symbolCurrency1: string;
|
1897
|
-
tickSpacing: number;
|
1898
|
-
}> | undefined;
|
1899
|
-
999?: Record<string, {
|
1900
|
-
chainId: number;
|
1901
|
-
currency0: string;
|
1902
|
-
currency1: string;
|
1903
|
-
decimalsCurrency0: number;
|
1904
|
-
decimalsCurrency1: number;
|
1905
|
-
hooks: string;
|
1906
|
-
lpFee: number;
|
1907
|
-
poolId: string;
|
1908
|
-
symbolCurrency0: string;
|
1909
|
-
symbolCurrency1: string;
|
1910
|
-
tickSpacing: number;
|
1911
|
-
}> | undefined;
|
1912
|
-
} | null;
|
1913
|
-
}>>;
|
1914
|
-
pool: ((params: {
|
1915
|
-
poolId: string | number;
|
1916
|
-
}) => {
|
1917
|
-
get: (options?: {
|
1918
|
-
fetch?: RequestInit | undefined;
|
1919
|
-
headers?: Record<string, unknown> | undefined;
|
1920
|
-
query?: Record<string, unknown> | undefined;
|
1921
|
-
} | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
1922
|
-
200: {
|
1923
|
-
chainId: number;
|
1924
|
-
currency0: string;
|
1925
|
-
currency1: string;
|
1926
|
-
decimalsCurrency0: number;
|
1927
|
-
decimalsCurrency1: number;
|
1928
|
-
hooks: string;
|
1929
|
-
lpFee: number;
|
1930
|
-
poolId: string;
|
1931
|
-
symbolCurrency0: string;
|
1932
|
-
symbolCurrency1: string;
|
1933
|
-
tickSpacing: number;
|
1934
|
-
}[];
|
1935
|
-
422: {
|
1936
|
-
type: "validation";
|
1937
|
-
on: string;
|
1938
|
-
summary?: string | undefined;
|
1939
|
-
message?: string | undefined;
|
1940
|
-
found?: unknown;
|
1941
|
-
property?: string | undefined;
|
1942
|
-
expected?: string | undefined;
|
1943
|
-
};
|
1944
|
-
}>>;
|
1945
|
-
}) & {};
|
1946
|
-
};
|
1947
1144
|
updates: {
|
1948
1145
|
get: (options: {
|
1949
1146
|
fetch?: RequestInit | undefined;
|
@@ -12420,6 +11617,36 @@ declare const eden: {
|
|
12420
11617
|
};
|
12421
11618
|
}>>;
|
12422
11619
|
};
|
11620
|
+
reports: ((params: {
|
11621
|
+
chainId: string | number;
|
11622
|
+
}) => {
|
11623
|
+
get: (options: {
|
11624
|
+
fetch?: RequestInit | undefined;
|
11625
|
+
headers?: Record<string, unknown> | undefined;
|
11626
|
+
query: {
|
11627
|
+
page?: number | undefined;
|
11628
|
+
items?: number | undefined;
|
11629
|
+
};
|
11630
|
+
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
11631
|
+
200: {
|
11632
|
+
root: string;
|
11633
|
+
chainId: number;
|
11634
|
+
epoch: number;
|
11635
|
+
timestamp: bigint;
|
11636
|
+
claimedValue: number;
|
11637
|
+
report: string;
|
11638
|
+
}[];
|
11639
|
+
422: {
|
11640
|
+
type: "validation";
|
11641
|
+
on: string;
|
11642
|
+
summary?: string | undefined;
|
11643
|
+
message?: string | undefined;
|
11644
|
+
found?: unknown;
|
11645
|
+
property?: string | undefined;
|
11646
|
+
expected?: string | undefined;
|
11647
|
+
};
|
11648
|
+
}>>;
|
11649
|
+
}) & {};
|
12423
11650
|
};
|
12424
11651
|
tokens: ((params: {
|
12425
11652
|
id: string | number;
|