@merkl/api 1.6.99 → 1.6.101
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 +52 -1
- package/dist/src/engine/implementations/Erc20/subTypes/factories.js.map +1 -1
- package/dist/src/engine/implementations/morphoVaultV2/metadata.d.ts +19 -0
- package/dist/src/engine/implementations/morphoVaultV2/metadata.js.map +1 -0
- package/dist/src/index.d.ts +60 -1
- package/dist/src/modules/v4/campaign/campaign.controller.js.map +1 -1
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +15 -15
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +10 -4
- package/dist/src/modules/v4/campaign/campaign.service.js.map +1 -1
- package/dist/src/modules/v4/discord/discord.service.d.ts +0 -3
- package/dist/src/modules/v4/discord/discord.service.js.map +1 -1
- package/dist/src/modules/v4/node/node.controller.d.ts +2 -1
- package/dist/src/modules/v4/node/node.model.d.ts +6 -4
- package/dist/src/modules/v4/node/node.model.js.map +1 -1
- package/dist/src/modules/v4/node/node.service.d.ts +2 -1
- package/dist/src/modules/v4/node/node.service.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/ethena.d.ts +32 -32
- package/dist/src/modules/v4/router.d.ts +60 -1
- package/dist/src/modules/v4/router.js.map +1 -1
- package/dist/src/modules/v4/transaction/transaction.controller.d.ts +87 -0
- package/dist/src/modules/v4/transaction/transaction.controller.js.map +1 -0
- package/dist/src/modules/v4/transaction/transaction.model.d.ts +11 -0
- package/dist/src/modules/v4/transaction/transaction.model.js.map +1 -1
- package/dist/src/modules/v4/transaction/transaction.service.d.ts +37 -0
- package/dist/src/modules/v4/transaction/transaction.service.js.map +1 -0
- package/dist/src/utils/getAPR.d.ts +60 -60
- package/package.json +1 -1
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import Elysia from "elysia";
|
|
2
|
+
export declare const TransactionController: Elysia<"/transactions", {
|
|
3
|
+
decorator: {};
|
|
4
|
+
store: {};
|
|
5
|
+
derive: {};
|
|
6
|
+
resolve: {};
|
|
7
|
+
}, {
|
|
8
|
+
typebox: {};
|
|
9
|
+
error: {};
|
|
10
|
+
}, {
|
|
11
|
+
schema: {};
|
|
12
|
+
standaloneSchema: {};
|
|
13
|
+
macro: {};
|
|
14
|
+
macroFn: {};
|
|
15
|
+
parser: {};
|
|
16
|
+
response: {};
|
|
17
|
+
}, {
|
|
18
|
+
transactions: {
|
|
19
|
+
"campaign-ids": {
|
|
20
|
+
get: {
|
|
21
|
+
body: unknown;
|
|
22
|
+
params: {};
|
|
23
|
+
query: {
|
|
24
|
+
hash: string;
|
|
25
|
+
chainId: number;
|
|
26
|
+
};
|
|
27
|
+
headers: unknown;
|
|
28
|
+
response: {
|
|
29
|
+
200: string[];
|
|
30
|
+
422: {
|
|
31
|
+
type: "validation";
|
|
32
|
+
on: string;
|
|
33
|
+
summary?: string | undefined;
|
|
34
|
+
message?: string | undefined;
|
|
35
|
+
found?: unknown;
|
|
36
|
+
property?: string | undefined;
|
|
37
|
+
expected?: string | undefined;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
} & {
|
|
44
|
+
transactions: {
|
|
45
|
+
"find-creation-hash": {
|
|
46
|
+
get: {
|
|
47
|
+
body: unknown;
|
|
48
|
+
params: {};
|
|
49
|
+
query: {
|
|
50
|
+
chainId: number;
|
|
51
|
+
campaignId: string;
|
|
52
|
+
};
|
|
53
|
+
headers: {
|
|
54
|
+
authorization: string;
|
|
55
|
+
};
|
|
56
|
+
response: {
|
|
57
|
+
200: {
|
|
58
|
+
hash: string | null;
|
|
59
|
+
blockNumber: number | null;
|
|
60
|
+
explorerUrl: string | null;
|
|
61
|
+
};
|
|
62
|
+
422: {
|
|
63
|
+
type: "validation";
|
|
64
|
+
on: string;
|
|
65
|
+
summary?: string | undefined;
|
|
66
|
+
message?: string | undefined;
|
|
67
|
+
found?: unknown;
|
|
68
|
+
property?: string | undefined;
|
|
69
|
+
expected?: string | undefined;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
}, {
|
|
76
|
+
derive: {};
|
|
77
|
+
resolve: {};
|
|
78
|
+
schema: {};
|
|
79
|
+
standaloneSchema: {};
|
|
80
|
+
response: {};
|
|
81
|
+
}, {
|
|
82
|
+
derive: {};
|
|
83
|
+
resolve: {};
|
|
84
|
+
schema: {};
|
|
85
|
+
standaloneSchema: {};
|
|
86
|
+
response: {};
|
|
87
|
+
}>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transaction.controller.js","sourceRoot":"","sources":["../../../../../../../apps/api/src/modules/v4/transaction/transaction.controller.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,EAAE,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AACnC,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AAC5F,OAAO,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAE,0BAA0B,EAAE,kCAAkC,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrH,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAE3D,0LAAgF;AAEhF,MAAM,CAAC,MAAM,qBAAqB,GAAG,IAAI,MAAM,CAAC,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,CAAC,cAAc,CAAC,EAAE,EAAE,CAAC;KAC7G,KAAK,CAAC,EAAE,YAAY,EAAE,eAAe,CAAC,GAAG,CAAC,EAAE,CAAC;IAE9C,qIAA+E;KAE9E,GAAG,CAAC,eAAe,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,kBAAkB,CAAC,gCAAgC,CAAC,KAAK,CAAC,EAAE;IACrG,KAAK,EAAE,cAAc;IACrB,QAAQ,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC7B,MAAM,EAAE;QACN,OAAO,EAAE,wCAAwC;QACjD,WAAW,EACT,6IAA6I;KAChJ;CACF,CAAC;IAEF,qHAA+E;KAE9E,GAAG,CACF,qBAAqB,EACrB,KAAK,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC;IACnB,MAAM,MAAM,GAAG,MAAM,kBAAkB,CAAC,2BAA2B,CAAC,KAAK,CAAC,OAAO,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC;IACrG,OAAO,MAAM,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,CAAC;AAAA,CACvE,EACD;IACE,KAAK,EAAE,0BAA0B;IACjC,OAAO,EAAE,uBAAuB;IAChC,YAAY,EAAE,eAAe;IAC7B,QAAQ,EAAE,kCAAkC;IAC5C,MAAM,EAAE;QACN,OAAO,EAAE,gCAAgC;QACzC,WAAW,EACT,qUAAqU;KACxU;CACF,CACF,CAAC"}
|
|
@@ -13,5 +13,16 @@ export declare const TransactionParametersDto: import("@sinclair/typebox").TObje
|
|
|
13
13
|
maxPriorityFeePerGas: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
14
14
|
nonce: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15
15
|
}>;
|
|
16
|
+
export declare const FindCreationTransactionDto: import("@sinclair/typebox").TObject<{
|
|
17
|
+
chainId: import("@sinclair/typebox").TNumber;
|
|
18
|
+
campaignId: import("@sinclair/typebox").TString;
|
|
19
|
+
}>;
|
|
20
|
+
export declare const FindCreationTransactionResponseDto: import("@sinclair/typebox").TObject<{
|
|
21
|
+
hash: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
22
|
+
blockNumber: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>;
|
|
23
|
+
explorerUrl: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
24
|
+
}>;
|
|
16
25
|
export type TransactionModel = typeof TransactionDto.static;
|
|
17
26
|
export type TransactionParametersModel = typeof TransactionParametersDto.static;
|
|
27
|
+
export type FindCreationTransactionModel = typeof FindCreationTransactionDto.static;
|
|
28
|
+
export type FindCreationTransactionResponseModel = typeof FindCreationTransactionResponseDto.static;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"transaction.model.js","sourceRoot":"","sources":["../../../../../../../apps/api/src/modules/v4/transaction/transaction.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;CACtC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IACrC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC;IACpC,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,4CAA4C,CAAC,EAAE,CAAC;IAC1E,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,4CAA4C,CAAC,EAAE,CAAC;IAC5E,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,qBAAqB,CAAC,EAAE,CAAC,CAAC;IAClE,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;IAClD,YAAY,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;IAChE,oBAAoB,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;IACxE,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;CAC/C,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"transaction.model.js","sourceRoot":"","sources":["../../../../../../../apps/api/src/modules/v4/transaction/transaction.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;CACtC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IACrC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC;IACpC,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,4CAA4C,CAAC,EAAE,CAAC;IAC1E,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,4CAA4C,CAAC,EAAE,CAAC;IAC5E,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,qBAAqB,CAAC,EAAE,CAAC,CAAC;IAClE,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;IAClD,YAAY,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;IAChE,oBAAoB,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;IACxE,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;CAC/C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,EAAE,WAAW,EAAE,yCAAyC,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IAC7F,UAAU,EAAE,CAAC,CAAC,MAAM,CAAC;QACnB,WAAW,EAAE,2BAA2B;QACxC,QAAQ,EAAE,CAAC,oEAAoE,CAAC;KACjF,CAAC;CACH,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,kCAAkC,GAAG,CAAC,CAAC,MAAM,CAAC;IACzD,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;IACrC,WAAW,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;IAC5C,WAAW,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;CAC7C,CAAC,CAAC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { TransactionModel } from "./transaction.model";
|
|
2
|
+
/**
|
|
3
|
+
* Service for transaction-related operations
|
|
4
|
+
*/
|
|
5
|
+
export declare abstract class TransactionService {
|
|
6
|
+
/**
|
|
7
|
+
* Get NewCampaign events from a creation transaction hash
|
|
8
|
+
*/
|
|
9
|
+
static getNewCampaignEventsFromCreationTxHash(query: TransactionModel): Promise<{
|
|
10
|
+
campaignId: string;
|
|
11
|
+
creator: string;
|
|
12
|
+
rewardToken: string;
|
|
13
|
+
amount: string;
|
|
14
|
+
campaignType: number;
|
|
15
|
+
startTimestamp: number;
|
|
16
|
+
duration: number;
|
|
17
|
+
campaignData: string;
|
|
18
|
+
}[]>;
|
|
19
|
+
/**
|
|
20
|
+
* Get campaign IDs from a creation transaction hash
|
|
21
|
+
*/
|
|
22
|
+
static getCampaignIdsFromCreationTxHash(query: TransactionModel): Promise<string[]>;
|
|
23
|
+
/**
|
|
24
|
+
* Get the sender address (from field) of a transaction
|
|
25
|
+
*/
|
|
26
|
+
static getTransactionSender(chainId: number, transactionHash: string): Promise<string | null>;
|
|
27
|
+
/**
|
|
28
|
+
* Find the transaction hash where a campaign was created using binary search
|
|
29
|
+
* This method searches the blockchain history efficiently to locate the NewCampaign event
|
|
30
|
+
* Returns null if the campaign creation transaction cannot be found
|
|
31
|
+
*/
|
|
32
|
+
static findCreationTransactionHash(chainId: number, campaignId: string): Promise<{
|
|
33
|
+
hash: string;
|
|
34
|
+
blockNumber: number;
|
|
35
|
+
explorerUrl: string | null;
|
|
36
|
+
} | null>;
|
|
37
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transaction.service.js","sourceRoot":"","sources":["../../../../../../../apps/api/src/modules/v4/transaction/transaction.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -250,11 +250,6 @@ export declare const getAPR: (params: {
|
|
|
250
250
|
priority: number;
|
|
251
251
|
sender: string;
|
|
252
252
|
} & ({
|
|
253
|
-
forwarderType: import("@package/resources/enums").CLAMM;
|
|
254
|
-
type: string | number;
|
|
255
|
-
owner?: string | undefined;
|
|
256
|
-
target: string;
|
|
257
|
-
} | {
|
|
258
253
|
forwarderType: import("@package/resources/enums").IRONCLAD_RELIQUARY;
|
|
259
254
|
} | {
|
|
260
255
|
forwarderType: import("@package/resources/enums").ZKSWAP_FARM;
|
|
@@ -262,6 +257,11 @@ export declare const getAPR: (params: {
|
|
|
262
257
|
forwarderType: import("@package/resources/enums").SUPERFORM;
|
|
263
258
|
} | {
|
|
264
259
|
forwarderType: import("@package/resources/enums").SWAP_X_GAUGE;
|
|
260
|
+
} | {
|
|
261
|
+
forwarderType: import("@package/resources/enums").CLAMM;
|
|
262
|
+
type: string | number;
|
|
263
|
+
owner?: string | undefined;
|
|
264
|
+
target: string;
|
|
265
265
|
} | {
|
|
266
266
|
forwarderType: import("@package/resources/enums").ERC20;
|
|
267
267
|
token: string;
|
|
@@ -596,11 +596,6 @@ export declare const getAPR: (params: {
|
|
|
596
596
|
priority: number;
|
|
597
597
|
sender: string;
|
|
598
598
|
} & ({
|
|
599
|
-
forwarderType: import("@package/resources/enums").CLAMM;
|
|
600
|
-
type: string | number;
|
|
601
|
-
owner?: string | undefined;
|
|
602
|
-
target: string;
|
|
603
|
-
} | {
|
|
604
599
|
forwarderType: import("@package/resources/enums").IRONCLAD_RELIQUARY;
|
|
605
600
|
} | {
|
|
606
601
|
forwarderType: import("@package/resources/enums").ZKSWAP_FARM;
|
|
@@ -608,6 +603,11 @@ export declare const getAPR: (params: {
|
|
|
608
603
|
forwarderType: import("@package/resources/enums").SUPERFORM;
|
|
609
604
|
} | {
|
|
610
605
|
forwarderType: import("@package/resources/enums").SWAP_X_GAUGE;
|
|
606
|
+
} | {
|
|
607
|
+
forwarderType: import("@package/resources/enums").CLAMM;
|
|
608
|
+
type: string | number;
|
|
609
|
+
owner?: string | undefined;
|
|
610
|
+
target: string;
|
|
611
611
|
} | {
|
|
612
612
|
forwarderType: import("@package/resources/enums").ERC20;
|
|
613
613
|
token: string;
|
|
@@ -1210,11 +1210,6 @@ export declare const getAPR: (params: {
|
|
|
1210
1210
|
priority: number;
|
|
1211
1211
|
sender: string;
|
|
1212
1212
|
} & ({
|
|
1213
|
-
forwarderType: import("@package/resources/enums").CLAMM;
|
|
1214
|
-
type: string | number;
|
|
1215
|
-
owner?: string | undefined;
|
|
1216
|
-
target: string;
|
|
1217
|
-
} | {
|
|
1218
1213
|
forwarderType: import("@package/resources/enums").IRONCLAD_RELIQUARY;
|
|
1219
1214
|
} | {
|
|
1220
1215
|
forwarderType: import("@package/resources/enums").ZKSWAP_FARM;
|
|
@@ -1222,6 +1217,11 @@ export declare const getAPR: (params: {
|
|
|
1222
1217
|
forwarderType: import("@package/resources/enums").SUPERFORM;
|
|
1223
1218
|
} | {
|
|
1224
1219
|
forwarderType: import("@package/resources/enums").SWAP_X_GAUGE;
|
|
1220
|
+
} | {
|
|
1221
|
+
forwarderType: import("@package/resources/enums").CLAMM;
|
|
1222
|
+
type: string | number;
|
|
1223
|
+
owner?: string | undefined;
|
|
1224
|
+
target: string;
|
|
1225
1225
|
} | {
|
|
1226
1226
|
forwarderType: import("@package/resources/enums").ERC20;
|
|
1227
1227
|
token: string;
|
|
@@ -1922,11 +1922,6 @@ export declare const getAPR: (params: {
|
|
|
1922
1922
|
priority: number;
|
|
1923
1923
|
sender: string;
|
|
1924
1924
|
} & ({
|
|
1925
|
-
forwarderType: import("@package/resources/enums").CLAMM;
|
|
1926
|
-
type: string | number;
|
|
1927
|
-
owner?: string | undefined;
|
|
1928
|
-
target: string;
|
|
1929
|
-
} | {
|
|
1930
1925
|
forwarderType: import("@package/resources/enums").IRONCLAD_RELIQUARY;
|
|
1931
1926
|
} | {
|
|
1932
1927
|
forwarderType: import("@package/resources/enums").ZKSWAP_FARM;
|
|
@@ -1934,6 +1929,11 @@ export declare const getAPR: (params: {
|
|
|
1934
1929
|
forwarderType: import("@package/resources/enums").SUPERFORM;
|
|
1935
1930
|
} | {
|
|
1936
1931
|
forwarderType: import("@package/resources/enums").SWAP_X_GAUGE;
|
|
1932
|
+
} | {
|
|
1933
|
+
forwarderType: import("@package/resources/enums").CLAMM;
|
|
1934
|
+
type: string | number;
|
|
1935
|
+
owner?: string | undefined;
|
|
1936
|
+
target: string;
|
|
1937
1937
|
} | {
|
|
1938
1938
|
forwarderType: import("@package/resources/enums").ERC20;
|
|
1939
1939
|
token: string;
|
|
@@ -2329,11 +2329,6 @@ export declare const getAPR: (params: {
|
|
|
2329
2329
|
priority: number;
|
|
2330
2330
|
sender: string;
|
|
2331
2331
|
} & ({
|
|
2332
|
-
forwarderType: import("@package/resources/enums").CLAMM;
|
|
2333
|
-
type: string | number;
|
|
2334
|
-
owner?: string | undefined;
|
|
2335
|
-
target: string;
|
|
2336
|
-
} | {
|
|
2337
2332
|
forwarderType: import("@package/resources/enums").IRONCLAD_RELIQUARY;
|
|
2338
2333
|
} | {
|
|
2339
2334
|
forwarderType: import("@package/resources/enums").ZKSWAP_FARM;
|
|
@@ -2341,6 +2336,11 @@ export declare const getAPR: (params: {
|
|
|
2341
2336
|
forwarderType: import("@package/resources/enums").SUPERFORM;
|
|
2342
2337
|
} | {
|
|
2343
2338
|
forwarderType: import("@package/resources/enums").SWAP_X_GAUGE;
|
|
2339
|
+
} | {
|
|
2340
|
+
forwarderType: import("@package/resources/enums").CLAMM;
|
|
2341
|
+
type: string | number;
|
|
2342
|
+
owner?: string | undefined;
|
|
2343
|
+
target: string;
|
|
2344
2344
|
} | {
|
|
2345
2345
|
forwarderType: import("@package/resources/enums").ERC20;
|
|
2346
2346
|
token: string;
|
|
@@ -2943,11 +2943,6 @@ export declare const getAPR: (params: {
|
|
|
2943
2943
|
priority: number;
|
|
2944
2944
|
sender: string;
|
|
2945
2945
|
} & ({
|
|
2946
|
-
forwarderType: import("@package/resources/enums").CLAMM;
|
|
2947
|
-
type: string | number;
|
|
2948
|
-
owner?: string | undefined;
|
|
2949
|
-
target: string;
|
|
2950
|
-
} | {
|
|
2951
2946
|
forwarderType: import("@package/resources/enums").IRONCLAD_RELIQUARY;
|
|
2952
2947
|
} | {
|
|
2953
2948
|
forwarderType: import("@package/resources/enums").ZKSWAP_FARM;
|
|
@@ -2955,6 +2950,11 @@ export declare const getAPR: (params: {
|
|
|
2955
2950
|
forwarderType: import("@package/resources/enums").SUPERFORM;
|
|
2956
2951
|
} | {
|
|
2957
2952
|
forwarderType: import("@package/resources/enums").SWAP_X_GAUGE;
|
|
2953
|
+
} | {
|
|
2954
|
+
forwarderType: import("@package/resources/enums").CLAMM;
|
|
2955
|
+
type: string | number;
|
|
2956
|
+
owner?: string | undefined;
|
|
2957
|
+
target: string;
|
|
2958
2958
|
} | {
|
|
2959
2959
|
forwarderType: import("@package/resources/enums").ERC20;
|
|
2960
2960
|
token: string;
|
|
@@ -3353,11 +3353,6 @@ export declare const getAPR: (params: {
|
|
|
3353
3353
|
priority: number;
|
|
3354
3354
|
sender: string;
|
|
3355
3355
|
} & ({
|
|
3356
|
-
forwarderType: import("@package/resources/enums").CLAMM;
|
|
3357
|
-
type: string | number;
|
|
3358
|
-
owner?: string | undefined;
|
|
3359
|
-
target: string;
|
|
3360
|
-
} | {
|
|
3361
3356
|
forwarderType: import("@package/resources/enums").IRONCLAD_RELIQUARY;
|
|
3362
3357
|
} | {
|
|
3363
3358
|
forwarderType: import("@package/resources/enums").ZKSWAP_FARM;
|
|
@@ -3365,6 +3360,11 @@ export declare const getAPR: (params: {
|
|
|
3365
3360
|
forwarderType: import("@package/resources/enums").SUPERFORM;
|
|
3366
3361
|
} | {
|
|
3367
3362
|
forwarderType: import("@package/resources/enums").SWAP_X_GAUGE;
|
|
3363
|
+
} | {
|
|
3364
|
+
forwarderType: import("@package/resources/enums").CLAMM;
|
|
3365
|
+
type: string | number;
|
|
3366
|
+
owner?: string | undefined;
|
|
3367
|
+
target: string;
|
|
3368
3368
|
} | {
|
|
3369
3369
|
forwarderType: import("@package/resources/enums").ERC20;
|
|
3370
3370
|
token: string;
|
|
@@ -3967,11 +3967,6 @@ export declare const getAPR: (params: {
|
|
|
3967
3967
|
priority: number;
|
|
3968
3968
|
sender: string;
|
|
3969
3969
|
} & ({
|
|
3970
|
-
forwarderType: import("@package/resources/enums").CLAMM;
|
|
3971
|
-
type: string | number;
|
|
3972
|
-
owner?: string | undefined;
|
|
3973
|
-
target: string;
|
|
3974
|
-
} | {
|
|
3975
3970
|
forwarderType: import("@package/resources/enums").IRONCLAD_RELIQUARY;
|
|
3976
3971
|
} | {
|
|
3977
3972
|
forwarderType: import("@package/resources/enums").ZKSWAP_FARM;
|
|
@@ -3979,6 +3974,11 @@ export declare const getAPR: (params: {
|
|
|
3979
3974
|
forwarderType: import("@package/resources/enums").SUPERFORM;
|
|
3980
3975
|
} | {
|
|
3981
3976
|
forwarderType: import("@package/resources/enums").SWAP_X_GAUGE;
|
|
3977
|
+
} | {
|
|
3978
|
+
forwarderType: import("@package/resources/enums").CLAMM;
|
|
3979
|
+
type: string | number;
|
|
3980
|
+
owner?: string | undefined;
|
|
3981
|
+
target: string;
|
|
3982
3982
|
} | {
|
|
3983
3983
|
forwarderType: import("@package/resources/enums").ERC20;
|
|
3984
3984
|
token: string;
|
|
@@ -4382,11 +4382,6 @@ export declare const getAPR: (params: {
|
|
|
4382
4382
|
priority: number;
|
|
4383
4383
|
sender: string;
|
|
4384
4384
|
} & ({
|
|
4385
|
-
forwarderType: import("@package/resources/enums").CLAMM;
|
|
4386
|
-
type: string | number;
|
|
4387
|
-
owner?: string | undefined;
|
|
4388
|
-
target: string;
|
|
4389
|
-
} | {
|
|
4390
4385
|
forwarderType: import("@package/resources/enums").IRONCLAD_RELIQUARY;
|
|
4391
4386
|
} | {
|
|
4392
4387
|
forwarderType: import("@package/resources/enums").ZKSWAP_FARM;
|
|
@@ -4394,6 +4389,11 @@ export declare const getAPR: (params: {
|
|
|
4394
4389
|
forwarderType: import("@package/resources/enums").SUPERFORM;
|
|
4395
4390
|
} | {
|
|
4396
4391
|
forwarderType: import("@package/resources/enums").SWAP_X_GAUGE;
|
|
4392
|
+
} | {
|
|
4393
|
+
forwarderType: import("@package/resources/enums").CLAMM;
|
|
4394
|
+
type: string | number;
|
|
4395
|
+
owner?: string | undefined;
|
|
4396
|
+
target: string;
|
|
4397
4397
|
} | {
|
|
4398
4398
|
forwarderType: import("@package/resources/enums").ERC20;
|
|
4399
4399
|
token: string;
|
|
@@ -4996,11 +4996,6 @@ export declare const getAPR: (params: {
|
|
|
4996
4996
|
priority: number;
|
|
4997
4997
|
sender: string;
|
|
4998
4998
|
} & ({
|
|
4999
|
-
forwarderType: import("@package/resources/enums").CLAMM;
|
|
5000
|
-
type: string | number;
|
|
5001
|
-
owner?: string | undefined;
|
|
5002
|
-
target: string;
|
|
5003
|
-
} | {
|
|
5004
4999
|
forwarderType: import("@package/resources/enums").IRONCLAD_RELIQUARY;
|
|
5005
5000
|
} | {
|
|
5006
5001
|
forwarderType: import("@package/resources/enums").ZKSWAP_FARM;
|
|
@@ -5008,6 +5003,11 @@ export declare const getAPR: (params: {
|
|
|
5008
5003
|
forwarderType: import("@package/resources/enums").SUPERFORM;
|
|
5009
5004
|
} | {
|
|
5010
5005
|
forwarderType: import("@package/resources/enums").SWAP_X_GAUGE;
|
|
5006
|
+
} | {
|
|
5007
|
+
forwarderType: import("@package/resources/enums").CLAMM;
|
|
5008
|
+
type: string | number;
|
|
5009
|
+
owner?: string | undefined;
|
|
5010
|
+
target: string;
|
|
5011
5011
|
} | {
|
|
5012
5012
|
forwarderType: import("@package/resources/enums").ERC20;
|
|
5013
5013
|
token: string;
|
|
@@ -5412,11 +5412,6 @@ export declare const getAPR: (params: {
|
|
|
5412
5412
|
priority: number;
|
|
5413
5413
|
sender: string;
|
|
5414
5414
|
} & ({
|
|
5415
|
-
forwarderType: import("@package/resources/enums").CLAMM;
|
|
5416
|
-
type: string | number;
|
|
5417
|
-
owner?: string | undefined;
|
|
5418
|
-
target: string;
|
|
5419
|
-
} | {
|
|
5420
5415
|
forwarderType: import("@package/resources/enums").IRONCLAD_RELIQUARY;
|
|
5421
5416
|
} | {
|
|
5422
5417
|
forwarderType: import("@package/resources/enums").ZKSWAP_FARM;
|
|
@@ -5424,6 +5419,11 @@ export declare const getAPR: (params: {
|
|
|
5424
5419
|
forwarderType: import("@package/resources/enums").SUPERFORM;
|
|
5425
5420
|
} | {
|
|
5426
5421
|
forwarderType: import("@package/resources/enums").SWAP_X_GAUGE;
|
|
5422
|
+
} | {
|
|
5423
|
+
forwarderType: import("@package/resources/enums").CLAMM;
|
|
5424
|
+
type: string | number;
|
|
5425
|
+
owner?: string | undefined;
|
|
5426
|
+
target: string;
|
|
5427
5427
|
} | {
|
|
5428
5428
|
forwarderType: import("@package/resources/enums").ERC20;
|
|
5429
5429
|
token: string;
|
|
@@ -6026,11 +6026,6 @@ export declare const getAPR: (params: {
|
|
|
6026
6026
|
priority: number;
|
|
6027
6027
|
sender: string;
|
|
6028
6028
|
} & ({
|
|
6029
|
-
forwarderType: import("@package/resources/enums").CLAMM;
|
|
6030
|
-
type: string | number;
|
|
6031
|
-
owner?: string | undefined;
|
|
6032
|
-
target: string;
|
|
6033
|
-
} | {
|
|
6034
6029
|
forwarderType: import("@package/resources/enums").IRONCLAD_RELIQUARY;
|
|
6035
6030
|
} | {
|
|
6036
6031
|
forwarderType: import("@package/resources/enums").ZKSWAP_FARM;
|
|
@@ -6038,6 +6033,11 @@ export declare const getAPR: (params: {
|
|
|
6038
6033
|
forwarderType: import("@package/resources/enums").SUPERFORM;
|
|
6039
6034
|
} | {
|
|
6040
6035
|
forwarderType: import("@package/resources/enums").SWAP_X_GAUGE;
|
|
6036
|
+
} | {
|
|
6037
|
+
forwarderType: import("@package/resources/enums").CLAMM;
|
|
6038
|
+
type: string | number;
|
|
6039
|
+
owner?: string | undefined;
|
|
6040
|
+
target: string;
|
|
6041
6041
|
} | {
|
|
6042
6042
|
forwarderType: import("@package/resources/enums").ERC20;
|
|
6043
6043
|
token: string;
|
package/package.json
CHANGED