@merkl/api 1.10.8 → 1.10.10
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 +13 -0
- package/dist/src/engine/deprecated/dynamicData/implementations/Erc20.d.ts +25 -0
- package/dist/src/index.d.ts +13 -0
- package/dist/src/jobs/refresh-node-status-cache.d.ts +1 -0
- package/dist/src/jobs/refresh-node-status-cache.js.map +1 -0
- package/dist/src/modules/v4/campaign/campaign.query-transformer.d.ts +15 -15
- package/dist/src/modules/v4/node/node.service.d.ts +35 -0
- package/dist/src/modules/v4/node/node.service.js.map +1 -1
- package/dist/src/modules/v4/router.d.ts +13 -0
- package/dist/src/modules/v4/token/token.service.js.map +1 -1
- package/dist/src/modules/v4/transaction/transaction.service.d.ts +539 -459
- package/dist/src/modules/v4/uniswap/uniswap.controller.d.ts +13 -0
- package/dist/src/modules/v4/uniswap/uniswap.service.d.ts +14 -0
- package/dist/src/utils/getAPR.d.ts +264 -224
- package/dist/src/utils/parseDistributionType.d.ts +910 -870
- package/dist/src/utils/providers.d.ts +2 -0
- package/dist/src/utils/throw.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1200,6 +1200,19 @@ export declare const UniswapController: Elysia<"uniswap", {
|
|
|
1200
1200
|
symbolCurrency1: string;
|
|
1201
1201
|
tickSpacing: number;
|
|
1202
1202
|
}> | undefined;
|
|
1203
|
+
714?: Record<string, {
|
|
1204
|
+
chainId: number;
|
|
1205
|
+
currency0: string;
|
|
1206
|
+
currency1: string;
|
|
1207
|
+
decimalsCurrency0: number;
|
|
1208
|
+
decimalsCurrency1: number;
|
|
1209
|
+
hooks: string;
|
|
1210
|
+
lpFee: number;
|
|
1211
|
+
poolId: string;
|
|
1212
|
+
symbolCurrency0: string;
|
|
1213
|
+
symbolCurrency1: string;
|
|
1214
|
+
tickSpacing: number;
|
|
1215
|
+
}> | undefined;
|
|
1203
1216
|
747?: Record<string, {
|
|
1204
1217
|
chainId: number;
|
|
1205
1218
|
currency0: string;
|
|
@@ -930,6 +930,19 @@ export declare abstract class UniswapService {
|
|
|
930
930
|
symbolCurrency1: string;
|
|
931
931
|
tickSpacing: number;
|
|
932
932
|
}> | undefined;
|
|
933
|
+
714?: Record<string, {
|
|
934
|
+
chainId: number;
|
|
935
|
+
currency0: string;
|
|
936
|
+
currency1: string;
|
|
937
|
+
decimalsCurrency0: number;
|
|
938
|
+
decimalsCurrency1: number;
|
|
939
|
+
hooks: string;
|
|
940
|
+
lpFee: number;
|
|
941
|
+
poolId: string;
|
|
942
|
+
symbolCurrency0: string;
|
|
943
|
+
symbolCurrency1: string;
|
|
944
|
+
tickSpacing: number;
|
|
945
|
+
}> | undefined;
|
|
933
946
|
747?: Record<string, {
|
|
934
947
|
chainId: number;
|
|
935
948
|
currency0: string;
|
|
@@ -1108,6 +1121,7 @@ export declare abstract class EkuboService {
|
|
|
1108
1121
|
592?: Record<string, EkuboPoolType> | undefined;
|
|
1109
1122
|
60808?: Record<string, EkuboPoolType> | undefined;
|
|
1110
1123
|
6900?: Record<string, EkuboPoolType> | undefined;
|
|
1124
|
+
714?: Record<string, EkuboPoolType> | undefined;
|
|
1111
1125
|
747?: Record<string, EkuboPoolType> | undefined;
|
|
1112
1126
|
747474?: Record<string, EkuboPoolType> | undefined;
|
|
1113
1127
|
80094?: Record<string, EkuboPoolType> | undefined;
|