@merkl/api 1.4.6 → 1.4.8
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 +267 -672
- package/dist/src/engine/deprecated/erc20SubTypeProcessors/helpers/ownerFinder.js.map +1 -1
- package/dist/src/engine/deprecated/erc20SubTypeProcessors/subtypesRound1.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/factories.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/eulerEarn/metadata.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/index.d.ts +31 -440
- package/dist/src/libs/computeFee.d.ts +12 -17
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +10 -0
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +1 -0
- package/dist/src/modules/v4/campaign/campaign.service.js.map +1 -1
- package/dist/src/modules/v4/config/config.controller.d.ts +4 -8
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +16 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +6 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +3 -0
- package/dist/src/modules/v4/payload/payload.model.d.ts +13 -12
- package/dist/src/modules/v4/payload/payload.model.js.map +1 -1
- package/dist/src/modules/v4/payload/payload.service.js.map +1 -1
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +0 -432
- package/dist/src/modules/v4/programPayload/programPayload.model.d.ts +20 -18
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +7 -1
- package/dist/src/modules/v4/programPayload/programPayload.repository.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/aave.d.ts +3 -1
- package/dist/src/modules/v4/programPayload/subPayloads/aave.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/drip.d.ts +45 -3
- package/dist/src/modules/v4/programPayload/subPayloads/drip.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/ethena.d.ts +4 -1
- package/dist/src/modules/v4/programPayload/subPayloads/ethena.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/hypurrFi.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/nibiru.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/redbelly.d.ts +4 -1
- package/dist/src/modules/v4/programPayload/subPayloads/redbelly.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/rezerve.d.ts +2 -1
- package/dist/src/modules/v4/programPayload/subPayloads/rezerve.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/tac.d.ts +2 -1
- package/dist/src/modules/v4/programPayload/subPayloads/tac.js.map +1 -1
- package/dist/src/modules/v4/reward/reward.model.d.ts +2 -0
- package/dist/src/modules/v4/router.d.ts +40 -449
- package/dist/src/modules/v4/token/token.controller.d.ts +1 -0
- package/dist/src/modules/v4/token/token.model.d.ts +1 -0
- package/dist/src/modules/v4/token/token.model.js.map +1 -1
- package/dist/src/utils/models.d.ts +4 -8
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
@@ -31,15 +31,11 @@ declare const app: Elysia<"", {
|
|
31
31
|
}> | import("@sinclair/typebox").TObject<{
|
32
32
|
boostTokenChainId: import("@sinclair/typebox").TNumber;
|
33
33
|
boostTokenAddress: import("@sinclair/typebox").TString;
|
34
|
-
boostTokenSymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
35
|
-
boostTokenDecimals: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
36
34
|
boostMultiplicator: import("@sinclair/typebox").TNumber;
|
37
35
|
} & {
|
38
36
|
hookType: import("@sinclair/typebox").TLiteral<import("@package/resources/enums").BOOST>;
|
39
37
|
}> | import("@sinclair/typebox").TObject<{
|
40
38
|
boostTokenAddress: import("@sinclair/typebox").TString;
|
41
|
-
boostTokenDecimals: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
42
|
-
boostTokenSymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
43
39
|
boostTokenChainId: import("@sinclair/typebox").TNumber;
|
44
40
|
boostTokenThreshold: import("@sinclair/typebox").TNumber;
|
45
41
|
boostConfiguration: import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNumber>;
|
@@ -64,8 +60,6 @@ declare const app: Elysia<"", {
|
|
64
60
|
}> | import("@sinclair/typebox").TObject<{
|
65
61
|
eligibilityTokenChainId: import("@sinclair/typebox").TNumber;
|
66
62
|
eligibilityTokenAddress: import("@sinclair/typebox").TString;
|
67
|
-
eligibilityTokenSymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
68
|
-
eligibilityTokenDecimals: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
69
63
|
eligibilityTokenThreshold: import("@sinclair/typebox").TNumber;
|
70
64
|
eligibilityDuration: import("@sinclair/typebox").TNumber;
|
71
65
|
} & {
|
@@ -245,8 +239,6 @@ declare const app: Elysia<"", {
|
|
245
239
|
computeMethod: import("@sinclair/typebox").TLiteral<import("@package/resources/enums").maxDeposit>;
|
246
240
|
}>)[]>>;
|
247
241
|
}>, import("@sinclair/typebox").TUnion<(import("@sinclair/typebox").TObject<{
|
248
|
-
campaignType: import("@sinclair/typebox").TLiteral<import("@package/resources/enums").INVALID>;
|
249
|
-
}> | import("@sinclair/typebox").TObject<{
|
250
242
|
whitelist: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
251
243
|
blacklist: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
252
244
|
endTimestamp: import("@sinclair/typebox").TNumber;
|
@@ -647,6 +639,10 @@ declare const app: Elysia<"", {
|
|
647
639
|
targetTokenPricing: import("@sinclair/typebox").TBoolean;
|
648
640
|
} & {
|
649
641
|
campaignType: import("@sinclair/typebox").TLiteral<import("@package/resources/enums").HYPERDRIVELOGFIXPROCESSOR>;
|
642
|
+
}> | import("@sinclair/typebox").TObject<{
|
643
|
+
endTimestamp: import("@sinclair/typebox").TNumber;
|
644
|
+
} & {
|
645
|
+
campaignType: import("@sinclair/typebox").TLiteral<import("@package/resources/enums").INVALID>;
|
650
646
|
}> | import("@sinclair/typebox").TObject<{
|
651
647
|
jsonUrl: import("@sinclair/typebox").TString;
|
652
648
|
url: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
@@ -1077,6 +1073,7 @@ declare const app: Elysia<"", {
|
|
1077
1073
|
priceSource?: string | null | undefined;
|
1078
1074
|
symbol: string;
|
1079
1075
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1076
|
+
displaySymbol?: string | undefined;
|
1080
1077
|
};
|
1081
1078
|
opportunityId?: string | undefined;
|
1082
1079
|
distributionChain?: {
|
@@ -1171,6 +1168,7 @@ declare const app: Elysia<"", {
|
|
1171
1168
|
priceSource?: string | null | undefined;
|
1172
1169
|
symbol: string;
|
1173
1170
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1171
|
+
displaySymbol?: string | undefined;
|
1174
1172
|
};
|
1175
1173
|
amount: string | bigint;
|
1176
1174
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
@@ -1193,6 +1191,7 @@ declare const app: Elysia<"", {
|
|
1193
1191
|
priceSource?: string | null | undefined;
|
1194
1192
|
symbol: string;
|
1195
1193
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1194
|
+
displaySymbol?: string | undefined;
|
1196
1195
|
}[];
|
1197
1196
|
tvl: number;
|
1198
1197
|
tvlRecord?: {
|
@@ -1278,6 +1277,7 @@ declare const app: Elysia<"", {
|
|
1278
1277
|
priceSource?: string | null | undefined;
|
1279
1278
|
symbol: string;
|
1280
1279
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1280
|
+
displaySymbol?: string | undefined;
|
1281
1281
|
}[];
|
1282
1282
|
chain: {
|
1283
1283
|
id: number;
|
@@ -1333,6 +1333,7 @@ declare const app: Elysia<"", {
|
|
1333
1333
|
priceSource?: string | null | undefined;
|
1334
1334
|
symbol: string;
|
1335
1335
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1336
|
+
displaySymbol?: string | undefined;
|
1336
1337
|
};
|
1337
1338
|
amount: string | bigint;
|
1338
1339
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
@@ -1428,6 +1429,7 @@ declare const app: Elysia<"", {
|
|
1428
1429
|
priceSource?: string | null | undefined;
|
1429
1430
|
symbol: string;
|
1430
1431
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1432
|
+
displaySymbol?: string | undefined;
|
1431
1433
|
};
|
1432
1434
|
opportunityId?: string | undefined;
|
1433
1435
|
distributionChain?: {
|
@@ -1522,6 +1524,7 @@ declare const app: Elysia<"", {
|
|
1522
1524
|
priceSource?: string | null | undefined;
|
1523
1525
|
symbol: string;
|
1524
1526
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1527
|
+
displaySymbol?: string | undefined;
|
1525
1528
|
};
|
1526
1529
|
amount: string | bigint;
|
1527
1530
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
@@ -1544,6 +1547,7 @@ declare const app: Elysia<"", {
|
|
1544
1547
|
priceSource?: string | null | undefined;
|
1545
1548
|
symbol: string;
|
1546
1549
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1550
|
+
displaySymbol?: string | undefined;
|
1547
1551
|
}[];
|
1548
1552
|
tvl: number;
|
1549
1553
|
tvlRecord?: {
|
@@ -1666,6 +1670,7 @@ declare const app: Elysia<"", {
|
|
1666
1670
|
priceSource?: string | null | undefined;
|
1667
1671
|
symbol: string;
|
1668
1672
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1673
|
+
displaySymbol?: string | undefined;
|
1669
1674
|
};
|
1670
1675
|
opportunityId?: string | undefined;
|
1671
1676
|
distributionChain?: {
|
@@ -1760,6 +1765,7 @@ declare const app: Elysia<"", {
|
|
1760
1765
|
priceSource?: string | null | undefined;
|
1761
1766
|
symbol: string;
|
1762
1767
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1768
|
+
displaySymbol?: string | undefined;
|
1763
1769
|
};
|
1764
1770
|
amount: string | bigint;
|
1765
1771
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
@@ -1782,6 +1788,7 @@ declare const app: Elysia<"", {
|
|
1782
1788
|
priceSource?: string | null | undefined;
|
1783
1789
|
symbol: string;
|
1784
1790
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1791
|
+
displaySymbol?: string | undefined;
|
1785
1792
|
}[];
|
1786
1793
|
tvl: number;
|
1787
1794
|
tvlRecord?: {
|
@@ -1890,6 +1897,7 @@ declare const app: Elysia<"", {
|
|
1890
1897
|
priceSource?: string | null | undefined;
|
1891
1898
|
symbol: string;
|
1892
1899
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1900
|
+
displaySymbol?: string | undefined;
|
1893
1901
|
}[];
|
1894
1902
|
chain: {
|
1895
1903
|
id: number;
|
@@ -1945,6 +1953,7 @@ declare const app: Elysia<"", {
|
|
1945
1953
|
priceSource?: string | null | undefined;
|
1946
1954
|
symbol: string;
|
1947
1955
|
type: "POINT" | "PRETGE" | "TOKEN";
|
1956
|
+
displaySymbol?: string | undefined;
|
1948
1957
|
};
|
1949
1958
|
amount: string | bigint;
|
1950
1959
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
@@ -2040,6 +2049,7 @@ declare const app: Elysia<"", {
|
|
2040
2049
|
priceSource?: string | null | undefined;
|
2041
2050
|
symbol: string;
|
2042
2051
|
type: "POINT" | "PRETGE" | "TOKEN";
|
2052
|
+
displaySymbol?: string | undefined;
|
2043
2053
|
};
|
2044
2054
|
opportunityId?: string | undefined;
|
2045
2055
|
distributionChain?: {
|
@@ -2134,6 +2144,7 @@ declare const app: Elysia<"", {
|
|
2134
2144
|
priceSource?: string | null | undefined;
|
2135
2145
|
symbol: string;
|
2136
2146
|
type: "POINT" | "PRETGE" | "TOKEN";
|
2147
|
+
displaySymbol?: string | undefined;
|
2137
2148
|
};
|
2138
2149
|
amount: string | bigint;
|
2139
2150
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
@@ -2156,6 +2167,7 @@ declare const app: Elysia<"", {
|
|
2156
2167
|
priceSource?: string | null | undefined;
|
2157
2168
|
symbol: string;
|
2158
2169
|
type: "POINT" | "PRETGE" | "TOKEN";
|
2170
|
+
displaySymbol?: string | undefined;
|
2159
2171
|
}[];
|
2160
2172
|
tvl: number;
|
2161
2173
|
tvlRecord?: {
|
@@ -3051,6 +3063,7 @@ declare const app: Elysia<"", {
|
|
3051
3063
|
priceSource?: string | null | undefined;
|
3052
3064
|
symbol: string;
|
3053
3065
|
type: "POINT" | "PRETGE" | "TOKEN";
|
3066
|
+
displaySymbol?: string | undefined;
|
3054
3067
|
};
|
3055
3068
|
opportunityId?: string | undefined;
|
3056
3069
|
distributionChain?: {
|
@@ -3180,6 +3193,7 @@ declare const app: Elysia<"", {
|
|
3180
3193
|
priceSource?: string | null | undefined;
|
3181
3194
|
symbol: string;
|
3182
3195
|
type: "POINT" | "PRETGE" | "TOKEN";
|
3196
|
+
displaySymbol?: string | undefined;
|
3183
3197
|
};
|
3184
3198
|
rewardTokenId?: string | undefined;
|
3185
3199
|
rootCampaignId?: string | undefined;
|
@@ -3357,6 +3371,7 @@ declare const app: Elysia<"", {
|
|
3357
3371
|
priceSource?: string | null | undefined;
|
3358
3372
|
symbol: string;
|
3359
3373
|
type: "POINT" | "PRETGE" | "TOKEN";
|
3374
|
+
displaySymbol?: string | undefined;
|
3360
3375
|
}[];
|
3361
3376
|
chain: {
|
3362
3377
|
id: number;
|
@@ -3412,6 +3427,7 @@ declare const app: Elysia<"", {
|
|
3412
3427
|
priceSource?: string | null | undefined;
|
3413
3428
|
symbol: string;
|
3414
3429
|
type: "POINT" | "PRETGE" | "TOKEN";
|
3430
|
+
displaySymbol?: string | undefined;
|
3415
3431
|
};
|
3416
3432
|
amount: string | bigint;
|
3417
3433
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
@@ -3472,6 +3488,7 @@ declare const app: Elysia<"", {
|
|
3472
3488
|
priceSource?: string | null | undefined;
|
3473
3489
|
symbol: string;
|
3474
3490
|
type: "POINT" | "PRETGE" | "TOKEN";
|
3491
|
+
displaySymbol?: string | undefined;
|
3475
3492
|
}[];
|
3476
3493
|
chain: {
|
3477
3494
|
id: number;
|
@@ -3527,6 +3544,7 @@ declare const app: Elysia<"", {
|
|
3527
3544
|
priceSource?: string | null | undefined;
|
3528
3545
|
symbol: string;
|
3529
3546
|
type: "POINT" | "PRETGE" | "TOKEN";
|
3547
|
+
displaySymbol?: string | undefined;
|
3530
3548
|
};
|
3531
3549
|
amount: string | bigint;
|
3532
3550
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
@@ -3587,6 +3605,7 @@ declare const app: Elysia<"", {
|
|
3587
3605
|
priceSource?: string | null | undefined;
|
3588
3606
|
symbol: string;
|
3589
3607
|
type: "POINT" | "PRETGE" | "TOKEN";
|
3608
|
+
displaySymbol?: string | undefined;
|
3590
3609
|
}[];
|
3591
3610
|
chain: {
|
3592
3611
|
id: number;
|
@@ -3642,6 +3661,7 @@ declare const app: Elysia<"", {
|
|
3642
3661
|
priceSource?: string | null | undefined;
|
3643
3662
|
symbol: string;
|
3644
3663
|
type: "POINT" | "PRETGE" | "TOKEN";
|
3664
|
+
displaySymbol?: string | undefined;
|
3645
3665
|
};
|
3646
3666
|
amount: string | bigint;
|
3647
3667
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
@@ -3910,6 +3930,7 @@ declare const app: Elysia<"", {
|
|
3910
3930
|
priceSource?: string | null | undefined;
|
3911
3931
|
symbol: string;
|
3912
3932
|
type: "POINT" | "PRETGE" | "TOKEN";
|
3933
|
+
displaySymbol?: string | undefined;
|
3913
3934
|
};
|
3914
3935
|
opportunityId?: string | undefined;
|
3915
3936
|
distributionChain?: {
|
@@ -4039,6 +4060,7 @@ declare const app: Elysia<"", {
|
|
4039
4060
|
priceSource?: string | null | undefined;
|
4040
4061
|
symbol: string;
|
4041
4062
|
type: "POINT" | "PRETGE" | "TOKEN";
|
4063
|
+
displaySymbol?: string | undefined;
|
4042
4064
|
};
|
4043
4065
|
rewardTokenId?: string | undefined;
|
4044
4066
|
rootCampaignId?: string | undefined;
|
@@ -6112,6 +6134,7 @@ declare const app: Elysia<"", {
|
|
6112
6134
|
priceSource?: string | null | undefined;
|
6113
6135
|
symbol: string;
|
6114
6136
|
type: "POINT" | "PRETGE" | "TOKEN";
|
6137
|
+
displaySymbol?: string | undefined;
|
6115
6138
|
};
|
6116
6139
|
422: {
|
6117
6140
|
type: "validation";
|
@@ -9708,14 +9731,10 @@ declare const app: Elysia<"", {
|
|
9708
9731
|
hookType: import("@package/resources/enums").BOOST;
|
9709
9732
|
boostTokenChainId: number;
|
9710
9733
|
boostTokenAddress: string;
|
9711
|
-
boostTokenSymbol?: string | undefined;
|
9712
|
-
boostTokenDecimals?: number | undefined;
|
9713
9734
|
boostMultiplicator: number;
|
9714
9735
|
} | {
|
9715
9736
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9716
9737
|
boostTokenAddress: string;
|
9717
|
-
boostTokenDecimals?: number | undefined;
|
9718
|
-
boostTokenSymbol?: string | undefined;
|
9719
9738
|
boostTokenChainId: number;
|
9720
9739
|
boostTokenThreshold: number;
|
9721
9740
|
boostConfiguration: {
|
@@ -9738,8 +9757,6 @@ declare const app: Elysia<"", {
|
|
9738
9757
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9739
9758
|
eligibilityTokenChainId: number;
|
9740
9759
|
eligibilityTokenAddress: string;
|
9741
|
-
eligibilityTokenSymbol?: string | undefined;
|
9742
|
-
eligibilityTokenDecimals?: number | undefined;
|
9743
9760
|
eligibilityTokenThreshold: number;
|
9744
9761
|
eligibilityDuration: number;
|
9745
9762
|
} | {
|
@@ -9921,14 +9938,10 @@ declare const app: Elysia<"", {
|
|
9921
9938
|
hookType: import("@package/resources/enums").BOOST;
|
9922
9939
|
boostTokenChainId: number;
|
9923
9940
|
boostTokenAddress: string;
|
9924
|
-
boostTokenSymbol?: string | undefined;
|
9925
|
-
boostTokenDecimals?: number | undefined;
|
9926
9941
|
boostMultiplicator: number;
|
9927
9942
|
} | {
|
9928
9943
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9929
9944
|
boostTokenAddress: string;
|
9930
|
-
boostTokenDecimals?: number | undefined;
|
9931
|
-
boostTokenSymbol?: string | undefined;
|
9932
9945
|
boostTokenChainId: number;
|
9933
9946
|
boostTokenThreshold: number;
|
9934
9947
|
boostConfiguration: {
|
@@ -9951,8 +9964,6 @@ declare const app: Elysia<"", {
|
|
9951
9964
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9952
9965
|
eligibilityTokenChainId: number;
|
9953
9966
|
eligibilityTokenAddress: string;
|
9954
|
-
eligibilityTokenSymbol?: string | undefined;
|
9955
|
-
eligibilityTokenDecimals?: number | undefined;
|
9956
9967
|
eligibilityTokenThreshold: number;
|
9957
9968
|
eligibilityDuration: number;
|
9958
9969
|
} | {
|
@@ -10134,14 +10145,10 @@ declare const app: Elysia<"", {
|
|
10134
10145
|
hookType: import("@package/resources/enums").BOOST;
|
10135
10146
|
boostTokenChainId: number;
|
10136
10147
|
boostTokenAddress: string;
|
10137
|
-
boostTokenSymbol?: string | undefined;
|
10138
|
-
boostTokenDecimals?: number | undefined;
|
10139
10148
|
boostMultiplicator: number;
|
10140
10149
|
} | {
|
10141
10150
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10142
10151
|
boostTokenAddress: string;
|
10143
|
-
boostTokenDecimals?: number | undefined;
|
10144
|
-
boostTokenSymbol?: string | undefined;
|
10145
10152
|
boostTokenChainId: number;
|
10146
10153
|
boostTokenThreshold: number;
|
10147
10154
|
boostConfiguration: {
|
@@ -10164,8 +10171,6 @@ declare const app: Elysia<"", {
|
|
10164
10171
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10165
10172
|
eligibilityTokenChainId: number;
|
10166
10173
|
eligibilityTokenAddress: string;
|
10167
|
-
eligibilityTokenSymbol?: string | undefined;
|
10168
|
-
eligibilityTokenDecimals?: number | undefined;
|
10169
10174
|
eligibilityTokenThreshold: number;
|
10170
10175
|
eligibilityDuration: number;
|
10171
10176
|
} | {
|
@@ -10349,14 +10354,10 @@ declare const app: Elysia<"", {
|
|
10349
10354
|
hookType: import("@package/resources/enums").BOOST;
|
10350
10355
|
boostTokenChainId: number;
|
10351
10356
|
boostTokenAddress: string;
|
10352
|
-
boostTokenSymbol?: string | undefined;
|
10353
|
-
boostTokenDecimals?: number | undefined;
|
10354
10357
|
boostMultiplicator: number;
|
10355
10358
|
} | {
|
10356
10359
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10357
10360
|
boostTokenAddress: string;
|
10358
|
-
boostTokenDecimals?: number | undefined;
|
10359
|
-
boostTokenSymbol?: string | undefined;
|
10360
10361
|
boostTokenChainId: number;
|
10361
10362
|
boostTokenThreshold: number;
|
10362
10363
|
boostConfiguration: {
|
@@ -10379,8 +10380,6 @@ declare const app: Elysia<"", {
|
|
10379
10380
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10380
10381
|
eligibilityTokenChainId: number;
|
10381
10382
|
eligibilityTokenAddress: string;
|
10382
|
-
eligibilityTokenSymbol?: string | undefined;
|
10383
|
-
eligibilityTokenDecimals?: number | undefined;
|
10384
10383
|
eligibilityTokenThreshold: number;
|
10385
10384
|
eligibilityDuration: number;
|
10386
10385
|
} | {
|
@@ -10570,14 +10569,10 @@ declare const app: Elysia<"", {
|
|
10570
10569
|
hookType: import("@package/resources/enums").BOOST;
|
10571
10570
|
boostTokenChainId: number;
|
10572
10571
|
boostTokenAddress: string;
|
10573
|
-
boostTokenSymbol?: string | undefined;
|
10574
|
-
boostTokenDecimals?: number | undefined;
|
10575
10572
|
boostMultiplicator: number;
|
10576
10573
|
} | {
|
10577
10574
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10578
10575
|
boostTokenAddress: string;
|
10579
|
-
boostTokenDecimals?: number | undefined;
|
10580
|
-
boostTokenSymbol?: string | undefined;
|
10581
10576
|
boostTokenChainId: number;
|
10582
10577
|
boostTokenThreshold: number;
|
10583
10578
|
boostConfiguration: {
|
@@ -10600,8 +10595,6 @@ declare const app: Elysia<"", {
|
|
10600
10595
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10601
10596
|
eligibilityTokenChainId: number;
|
10602
10597
|
eligibilityTokenAddress: string;
|
10603
|
-
eligibilityTokenSymbol?: string | undefined;
|
10604
|
-
eligibilityTokenDecimals?: number | undefined;
|
10605
10598
|
eligibilityTokenThreshold: number;
|
10606
10599
|
eligibilityDuration: number;
|
10607
10600
|
} | {
|
@@ -10784,14 +10777,10 @@ declare const app: Elysia<"", {
|
|
10784
10777
|
hookType: import("@package/resources/enums").BOOST;
|
10785
10778
|
boostTokenChainId: number;
|
10786
10779
|
boostTokenAddress: string;
|
10787
|
-
boostTokenSymbol?: string | undefined;
|
10788
|
-
boostTokenDecimals?: number | undefined;
|
10789
10780
|
boostMultiplicator: number;
|
10790
10781
|
} | {
|
10791
10782
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10792
10783
|
boostTokenAddress: string;
|
10793
|
-
boostTokenDecimals?: number | undefined;
|
10794
|
-
boostTokenSymbol?: string | undefined;
|
10795
10784
|
boostTokenChainId: number;
|
10796
10785
|
boostTokenThreshold: number;
|
10797
10786
|
boostConfiguration: {
|
@@ -10814,8 +10803,6 @@ declare const app: Elysia<"", {
|
|
10814
10803
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10815
10804
|
eligibilityTokenChainId: number;
|
10816
10805
|
eligibilityTokenAddress: string;
|
10817
|
-
eligibilityTokenSymbol?: string | undefined;
|
10818
|
-
eligibilityTokenDecimals?: number | undefined;
|
10819
10806
|
eligibilityTokenThreshold: number;
|
10820
10807
|
eligibilityDuration: number;
|
10821
10808
|
} | {
|
@@ -10997,14 +10984,10 @@ declare const app: Elysia<"", {
|
|
10997
10984
|
hookType: import("@package/resources/enums").BOOST;
|
10998
10985
|
boostTokenChainId: number;
|
10999
10986
|
boostTokenAddress: string;
|
11000
|
-
boostTokenSymbol?: string | undefined;
|
11001
|
-
boostTokenDecimals?: number | undefined;
|
11002
10987
|
boostMultiplicator: number;
|
11003
10988
|
} | {
|
11004
10989
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11005
10990
|
boostTokenAddress: string;
|
11006
|
-
boostTokenDecimals?: number | undefined;
|
11007
|
-
boostTokenSymbol?: string | undefined;
|
11008
10991
|
boostTokenChainId: number;
|
11009
10992
|
boostTokenThreshold: number;
|
11010
10993
|
boostConfiguration: {
|
@@ -11027,8 +11010,6 @@ declare const app: Elysia<"", {
|
|
11027
11010
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11028
11011
|
eligibilityTokenChainId: number;
|
11029
11012
|
eligibilityTokenAddress: string;
|
11030
|
-
eligibilityTokenSymbol?: string | undefined;
|
11031
|
-
eligibilityTokenDecimals?: number | undefined;
|
11032
11013
|
eligibilityTokenThreshold: number;
|
11033
11014
|
eligibilityDuration: number;
|
11034
11015
|
} | {
|
@@ -11210,14 +11191,10 @@ declare const app: Elysia<"", {
|
|
11210
11191
|
hookType: import("@package/resources/enums").BOOST;
|
11211
11192
|
boostTokenChainId: number;
|
11212
11193
|
boostTokenAddress: string;
|
11213
|
-
boostTokenSymbol?: string | undefined;
|
11214
|
-
boostTokenDecimals?: number | undefined;
|
11215
11194
|
boostMultiplicator: number;
|
11216
11195
|
} | {
|
11217
11196
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11218
11197
|
boostTokenAddress: string;
|
11219
|
-
boostTokenDecimals?: number | undefined;
|
11220
|
-
boostTokenSymbol?: string | undefined;
|
11221
11198
|
boostTokenChainId: number;
|
11222
11199
|
boostTokenThreshold: number;
|
11223
11200
|
boostConfiguration: {
|
@@ -11240,8 +11217,6 @@ declare const app: Elysia<"", {
|
|
11240
11217
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11241
11218
|
eligibilityTokenChainId: number;
|
11242
11219
|
eligibilityTokenAddress: string;
|
11243
|
-
eligibilityTokenSymbol?: string | undefined;
|
11244
|
-
eligibilityTokenDecimals?: number | undefined;
|
11245
11220
|
eligibilityTokenThreshold: number;
|
11246
11221
|
eligibilityDuration: number;
|
11247
11222
|
} | {
|
@@ -11426,14 +11401,10 @@ declare const app: Elysia<"", {
|
|
11426
11401
|
hookType: import("@package/resources/enums").BOOST;
|
11427
11402
|
boostTokenChainId: number;
|
11428
11403
|
boostTokenAddress: string;
|
11429
|
-
boostTokenSymbol?: string | undefined;
|
11430
|
-
boostTokenDecimals?: number | undefined;
|
11431
11404
|
boostMultiplicator: number;
|
11432
11405
|
} | {
|
11433
11406
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11434
11407
|
boostTokenAddress: string;
|
11435
|
-
boostTokenDecimals?: number | undefined;
|
11436
|
-
boostTokenSymbol?: string | undefined;
|
11437
11408
|
boostTokenChainId: number;
|
11438
11409
|
boostTokenThreshold: number;
|
11439
11410
|
boostConfiguration: {
|
@@ -11456,8 +11427,6 @@ declare const app: Elysia<"", {
|
|
11456
11427
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11457
11428
|
eligibilityTokenChainId: number;
|
11458
11429
|
eligibilityTokenAddress: string;
|
11459
|
-
eligibilityTokenSymbol?: string | undefined;
|
11460
|
-
eligibilityTokenDecimals?: number | undefined;
|
11461
11430
|
eligibilityTokenThreshold: number;
|
11462
11431
|
eligibilityDuration: number;
|
11463
11432
|
} | {
|
@@ -11640,14 +11609,10 @@ declare const app: Elysia<"", {
|
|
11640
11609
|
hookType: import("@package/resources/enums").BOOST;
|
11641
11610
|
boostTokenChainId: number;
|
11642
11611
|
boostTokenAddress: string;
|
11643
|
-
boostTokenSymbol?: string | undefined;
|
11644
|
-
boostTokenDecimals?: number | undefined;
|
11645
11612
|
boostMultiplicator: number;
|
11646
11613
|
} | {
|
11647
11614
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11648
11615
|
boostTokenAddress: string;
|
11649
|
-
boostTokenDecimals?: number | undefined;
|
11650
|
-
boostTokenSymbol?: string | undefined;
|
11651
11616
|
boostTokenChainId: number;
|
11652
11617
|
boostTokenThreshold: number;
|
11653
11618
|
boostConfiguration: {
|
@@ -11670,8 +11635,6 @@ declare const app: Elysia<"", {
|
|
11670
11635
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11671
11636
|
eligibilityTokenChainId: number;
|
11672
11637
|
eligibilityTokenAddress: string;
|
11673
|
-
eligibilityTokenSymbol?: string | undefined;
|
11674
|
-
eligibilityTokenDecimals?: number | undefined;
|
11675
11638
|
eligibilityTokenThreshold: number;
|
11676
11639
|
eligibilityDuration: number;
|
11677
11640
|
} | {
|
@@ -11853,14 +11816,10 @@ declare const app: Elysia<"", {
|
|
11853
11816
|
hookType: import("@package/resources/enums").BOOST;
|
11854
11817
|
boostTokenChainId: number;
|
11855
11818
|
boostTokenAddress: string;
|
11856
|
-
boostTokenSymbol?: string | undefined;
|
11857
|
-
boostTokenDecimals?: number | undefined;
|
11858
11819
|
boostMultiplicator: number;
|
11859
11820
|
} | {
|
11860
11821
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11861
11822
|
boostTokenAddress: string;
|
11862
|
-
boostTokenDecimals?: number | undefined;
|
11863
|
-
boostTokenSymbol?: string | undefined;
|
11864
11823
|
boostTokenChainId: number;
|
11865
11824
|
boostTokenThreshold: number;
|
11866
11825
|
boostConfiguration: {
|
@@ -11883,8 +11842,6 @@ declare const app: Elysia<"", {
|
|
11883
11842
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11884
11843
|
eligibilityTokenChainId: number;
|
11885
11844
|
eligibilityTokenAddress: string;
|
11886
|
-
eligibilityTokenSymbol?: string | undefined;
|
11887
|
-
eligibilityTokenDecimals?: number | undefined;
|
11888
11845
|
eligibilityTokenThreshold: number;
|
11889
11846
|
eligibilityDuration: number;
|
11890
11847
|
} | {
|
@@ -12070,14 +12027,10 @@ declare const app: Elysia<"", {
|
|
12070
12027
|
hookType: import("@package/resources/enums").BOOST;
|
12071
12028
|
boostTokenChainId: number;
|
12072
12029
|
boostTokenAddress: string;
|
12073
|
-
boostTokenSymbol?: string | undefined;
|
12074
|
-
boostTokenDecimals?: number | undefined;
|
12075
12030
|
boostMultiplicator: number;
|
12076
12031
|
} | {
|
12077
12032
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12078
12033
|
boostTokenAddress: string;
|
12079
|
-
boostTokenDecimals?: number | undefined;
|
12080
|
-
boostTokenSymbol?: string | undefined;
|
12081
12034
|
boostTokenChainId: number;
|
12082
12035
|
boostTokenThreshold: number;
|
12083
12036
|
boostConfiguration: {
|
@@ -12100,8 +12053,6 @@ declare const app: Elysia<"", {
|
|
12100
12053
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12101
12054
|
eligibilityTokenChainId: number;
|
12102
12055
|
eligibilityTokenAddress: string;
|
12103
|
-
eligibilityTokenSymbol?: string | undefined;
|
12104
|
-
eligibilityTokenDecimals?: number | undefined;
|
12105
12056
|
eligibilityTokenThreshold: number;
|
12106
12057
|
eligibilityDuration: number;
|
12107
12058
|
} | {
|
@@ -12284,14 +12235,10 @@ declare const app: Elysia<"", {
|
|
12284
12235
|
hookType: import("@package/resources/enums").BOOST;
|
12285
12236
|
boostTokenChainId: number;
|
12286
12237
|
boostTokenAddress: string;
|
12287
|
-
boostTokenSymbol?: string | undefined;
|
12288
|
-
boostTokenDecimals?: number | undefined;
|
12289
12238
|
boostMultiplicator: number;
|
12290
12239
|
} | {
|
12291
12240
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12292
12241
|
boostTokenAddress: string;
|
12293
|
-
boostTokenDecimals?: number | undefined;
|
12294
|
-
boostTokenSymbol?: string | undefined;
|
12295
12242
|
boostTokenChainId: number;
|
12296
12243
|
boostTokenThreshold: number;
|
12297
12244
|
boostConfiguration: {
|
@@ -12314,8 +12261,6 @@ declare const app: Elysia<"", {
|
|
12314
12261
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12315
12262
|
eligibilityTokenChainId: number;
|
12316
12263
|
eligibilityTokenAddress: string;
|
12317
|
-
eligibilityTokenSymbol?: string | undefined;
|
12318
|
-
eligibilityTokenDecimals?: number | undefined;
|
12319
12264
|
eligibilityTokenThreshold: number;
|
12320
12265
|
eligibilityDuration: number;
|
12321
12266
|
} | {
|
@@ -12498,14 +12443,10 @@ declare const app: Elysia<"", {
|
|
12498
12443
|
hookType: import("@package/resources/enums").BOOST;
|
12499
12444
|
boostTokenChainId: number;
|
12500
12445
|
boostTokenAddress: string;
|
12501
|
-
boostTokenSymbol?: string | undefined;
|
12502
|
-
boostTokenDecimals?: number | undefined;
|
12503
12446
|
boostMultiplicator: number;
|
12504
12447
|
} | {
|
12505
12448
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12506
12449
|
boostTokenAddress: string;
|
12507
|
-
boostTokenDecimals?: number | undefined;
|
12508
|
-
boostTokenSymbol?: string | undefined;
|
12509
12450
|
boostTokenChainId: number;
|
12510
12451
|
boostTokenThreshold: number;
|
12511
12452
|
boostConfiguration: {
|
@@ -12528,8 +12469,6 @@ declare const app: Elysia<"", {
|
|
12528
12469
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12529
12470
|
eligibilityTokenChainId: number;
|
12530
12471
|
eligibilityTokenAddress: string;
|
12531
|
-
eligibilityTokenSymbol?: string | undefined;
|
12532
|
-
eligibilityTokenDecimals?: number | undefined;
|
12533
12472
|
eligibilityTokenThreshold: number;
|
12534
12473
|
eligibilityDuration: number;
|
12535
12474
|
} | {
|
@@ -12719,14 +12658,10 @@ declare const app: Elysia<"", {
|
|
12719
12658
|
hookType: import("@package/resources/enums").BOOST;
|
12720
12659
|
boostTokenChainId: number;
|
12721
12660
|
boostTokenAddress: string;
|
12722
|
-
boostTokenSymbol?: string | undefined;
|
12723
|
-
boostTokenDecimals?: number | undefined;
|
12724
12661
|
boostMultiplicator: number;
|
12725
12662
|
} | {
|
12726
12663
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12727
12664
|
boostTokenAddress: string;
|
12728
|
-
boostTokenDecimals?: number | undefined;
|
12729
|
-
boostTokenSymbol?: string | undefined;
|
12730
12665
|
boostTokenChainId: number;
|
12731
12666
|
boostTokenThreshold: number;
|
12732
12667
|
boostConfiguration: {
|
@@ -12749,8 +12684,6 @@ declare const app: Elysia<"", {
|
|
12749
12684
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12750
12685
|
eligibilityTokenChainId: number;
|
12751
12686
|
eligibilityTokenAddress: string;
|
12752
|
-
eligibilityTokenSymbol?: string | undefined;
|
12753
|
-
eligibilityTokenDecimals?: number | undefined;
|
12754
12687
|
eligibilityTokenThreshold: number;
|
12755
12688
|
eligibilityDuration: number;
|
12756
12689
|
} | {
|
@@ -12933,14 +12866,10 @@ declare const app: Elysia<"", {
|
|
12933
12866
|
hookType: import("@package/resources/enums").BOOST;
|
12934
12867
|
boostTokenChainId: number;
|
12935
12868
|
boostTokenAddress: string;
|
12936
|
-
boostTokenSymbol?: string | undefined;
|
12937
|
-
boostTokenDecimals?: number | undefined;
|
12938
12869
|
boostMultiplicator: number;
|
12939
12870
|
} | {
|
12940
12871
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12941
12872
|
boostTokenAddress: string;
|
12942
|
-
boostTokenDecimals?: number | undefined;
|
12943
|
-
boostTokenSymbol?: string | undefined;
|
12944
12873
|
boostTokenChainId: number;
|
12945
12874
|
boostTokenThreshold: number;
|
12946
12875
|
boostConfiguration: {
|
@@ -12963,8 +12892,6 @@ declare const app: Elysia<"", {
|
|
12963
12892
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12964
12893
|
eligibilityTokenChainId: number;
|
12965
12894
|
eligibilityTokenAddress: string;
|
12966
|
-
eligibilityTokenSymbol?: string | undefined;
|
12967
|
-
eligibilityTokenDecimals?: number | undefined;
|
12968
12895
|
eligibilityTokenThreshold: number;
|
12969
12896
|
eligibilityDuration: number;
|
12970
12897
|
} | {
|
@@ -13144,14 +13071,10 @@ declare const app: Elysia<"", {
|
|
13144
13071
|
hookType: import("@package/resources/enums").BOOST;
|
13145
13072
|
boostTokenChainId: number;
|
13146
13073
|
boostTokenAddress: string;
|
13147
|
-
boostTokenSymbol?: string | undefined;
|
13148
|
-
boostTokenDecimals?: number | undefined;
|
13149
13074
|
boostMultiplicator: number;
|
13150
13075
|
} | {
|
13151
13076
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13152
13077
|
boostTokenAddress: string;
|
13153
|
-
boostTokenDecimals?: number | undefined;
|
13154
|
-
boostTokenSymbol?: string | undefined;
|
13155
13078
|
boostTokenChainId: number;
|
13156
13079
|
boostTokenThreshold: number;
|
13157
13080
|
boostConfiguration: {
|
@@ -13174,8 +13097,6 @@ declare const app: Elysia<"", {
|
|
13174
13097
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13175
13098
|
eligibilityTokenChainId: number;
|
13176
13099
|
eligibilityTokenAddress: string;
|
13177
|
-
eligibilityTokenSymbol?: string | undefined;
|
13178
|
-
eligibilityTokenDecimals?: number | undefined;
|
13179
13100
|
eligibilityTokenThreshold: number;
|
13180
13101
|
eligibilityDuration: number;
|
13181
13102
|
} | {
|
@@ -13357,14 +13278,10 @@ declare const app: Elysia<"", {
|
|
13357
13278
|
hookType: import("@package/resources/enums").BOOST;
|
13358
13279
|
boostTokenChainId: number;
|
13359
13280
|
boostTokenAddress: string;
|
13360
|
-
boostTokenSymbol?: string | undefined;
|
13361
|
-
boostTokenDecimals?: number | undefined;
|
13362
13281
|
boostMultiplicator: number;
|
13363
13282
|
} | {
|
13364
13283
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13365
13284
|
boostTokenAddress: string;
|
13366
|
-
boostTokenDecimals?: number | undefined;
|
13367
|
-
boostTokenSymbol?: string | undefined;
|
13368
13285
|
boostTokenChainId: number;
|
13369
13286
|
boostTokenThreshold: number;
|
13370
13287
|
boostConfiguration: {
|
@@ -13387,8 +13304,6 @@ declare const app: Elysia<"", {
|
|
13387
13304
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13388
13305
|
eligibilityTokenChainId: number;
|
13389
13306
|
eligibilityTokenAddress: string;
|
13390
|
-
eligibilityTokenSymbol?: string | undefined;
|
13391
|
-
eligibilityTokenDecimals?: number | undefined;
|
13392
13307
|
eligibilityTokenThreshold: number;
|
13393
13308
|
eligibilityDuration: number;
|
13394
13309
|
} | {
|
@@ -13571,14 +13486,10 @@ declare const app: Elysia<"", {
|
|
13571
13486
|
hookType: import("@package/resources/enums").BOOST;
|
13572
13487
|
boostTokenChainId: number;
|
13573
13488
|
boostTokenAddress: string;
|
13574
|
-
boostTokenSymbol?: string | undefined;
|
13575
|
-
boostTokenDecimals?: number | undefined;
|
13576
13489
|
boostMultiplicator: number;
|
13577
13490
|
} | {
|
13578
13491
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13579
13492
|
boostTokenAddress: string;
|
13580
|
-
boostTokenDecimals?: number | undefined;
|
13581
|
-
boostTokenSymbol?: string | undefined;
|
13582
13493
|
boostTokenChainId: number;
|
13583
13494
|
boostTokenThreshold: number;
|
13584
13495
|
boostConfiguration: {
|
@@ -13601,8 +13512,6 @@ declare const app: Elysia<"", {
|
|
13601
13512
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13602
13513
|
eligibilityTokenChainId: number;
|
13603
13514
|
eligibilityTokenAddress: string;
|
13604
|
-
eligibilityTokenSymbol?: string | undefined;
|
13605
|
-
eligibilityTokenDecimals?: number | undefined;
|
13606
13515
|
eligibilityTokenThreshold: number;
|
13607
13516
|
eligibilityDuration: number;
|
13608
13517
|
} | {
|
@@ -13788,14 +13697,10 @@ declare const app: Elysia<"", {
|
|
13788
13697
|
hookType: import("@package/resources/enums").BOOST;
|
13789
13698
|
boostTokenChainId: number;
|
13790
13699
|
boostTokenAddress: string;
|
13791
|
-
boostTokenSymbol?: string | undefined;
|
13792
|
-
boostTokenDecimals?: number | undefined;
|
13793
13700
|
boostMultiplicator: number;
|
13794
13701
|
} | {
|
13795
13702
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13796
13703
|
boostTokenAddress: string;
|
13797
|
-
boostTokenDecimals?: number | undefined;
|
13798
|
-
boostTokenSymbol?: string | undefined;
|
13799
13704
|
boostTokenChainId: number;
|
13800
13705
|
boostTokenThreshold: number;
|
13801
13706
|
boostConfiguration: {
|
@@ -13818,8 +13723,6 @@ declare const app: Elysia<"", {
|
|
13818
13723
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13819
13724
|
eligibilityTokenChainId: number;
|
13820
13725
|
eligibilityTokenAddress: string;
|
13821
|
-
eligibilityTokenSymbol?: string | undefined;
|
13822
|
-
eligibilityTokenDecimals?: number | undefined;
|
13823
13726
|
eligibilityTokenThreshold: number;
|
13824
13727
|
eligibilityDuration: number;
|
13825
13728
|
} | {
|
@@ -14003,14 +13906,10 @@ declare const app: Elysia<"", {
|
|
14003
13906
|
hookType: import("@package/resources/enums").BOOST;
|
14004
13907
|
boostTokenChainId: number;
|
14005
13908
|
boostTokenAddress: string;
|
14006
|
-
boostTokenSymbol?: string | undefined;
|
14007
|
-
boostTokenDecimals?: number | undefined;
|
14008
13909
|
boostMultiplicator: number;
|
14009
13910
|
} | {
|
14010
13911
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14011
13912
|
boostTokenAddress: string;
|
14012
|
-
boostTokenDecimals?: number | undefined;
|
14013
|
-
boostTokenSymbol?: string | undefined;
|
14014
13913
|
boostTokenChainId: number;
|
14015
13914
|
boostTokenThreshold: number;
|
14016
13915
|
boostConfiguration: {
|
@@ -14033,8 +13932,6 @@ declare const app: Elysia<"", {
|
|
14033
13932
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14034
13933
|
eligibilityTokenChainId: number;
|
14035
13934
|
eligibilityTokenAddress: string;
|
14036
|
-
eligibilityTokenSymbol?: string | undefined;
|
14037
|
-
eligibilityTokenDecimals?: number | undefined;
|
14038
13935
|
eligibilityTokenThreshold: number;
|
14039
13936
|
eligibilityDuration: number;
|
14040
13937
|
} | {
|
@@ -14217,14 +14114,10 @@ declare const app: Elysia<"", {
|
|
14217
14114
|
hookType: import("@package/resources/enums").BOOST;
|
14218
14115
|
boostTokenChainId: number;
|
14219
14116
|
boostTokenAddress: string;
|
14220
|
-
boostTokenSymbol?: string | undefined;
|
14221
|
-
boostTokenDecimals?: number | undefined;
|
14222
14117
|
boostMultiplicator: number;
|
14223
14118
|
} | {
|
14224
14119
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14225
14120
|
boostTokenAddress: string;
|
14226
|
-
boostTokenDecimals?: number | undefined;
|
14227
|
-
boostTokenSymbol?: string | undefined;
|
14228
14121
|
boostTokenChainId: number;
|
14229
14122
|
boostTokenThreshold: number;
|
14230
14123
|
boostConfiguration: {
|
@@ -14247,8 +14140,6 @@ declare const app: Elysia<"", {
|
|
14247
14140
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14248
14141
|
eligibilityTokenChainId: number;
|
14249
14142
|
eligibilityTokenAddress: string;
|
14250
|
-
eligibilityTokenSymbol?: string | undefined;
|
14251
|
-
eligibilityTokenDecimals?: number | undefined;
|
14252
14143
|
eligibilityTokenThreshold: number;
|
14253
14144
|
eligibilityDuration: number;
|
14254
14145
|
} | {
|
@@ -14434,14 +14325,10 @@ declare const app: Elysia<"", {
|
|
14434
14325
|
hookType: import("@package/resources/enums").BOOST;
|
14435
14326
|
boostTokenChainId: number;
|
14436
14327
|
boostTokenAddress: string;
|
14437
|
-
boostTokenSymbol?: string | undefined;
|
14438
|
-
boostTokenDecimals?: number | undefined;
|
14439
14328
|
boostMultiplicator: number;
|
14440
14329
|
} | {
|
14441
14330
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14442
14331
|
boostTokenAddress: string;
|
14443
|
-
boostTokenDecimals?: number | undefined;
|
14444
|
-
boostTokenSymbol?: string | undefined;
|
14445
14332
|
boostTokenChainId: number;
|
14446
14333
|
boostTokenThreshold: number;
|
14447
14334
|
boostConfiguration: {
|
@@ -14464,8 +14351,6 @@ declare const app: Elysia<"", {
|
|
14464
14351
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14465
14352
|
eligibilityTokenChainId: number;
|
14466
14353
|
eligibilityTokenAddress: string;
|
14467
|
-
eligibilityTokenSymbol?: string | undefined;
|
14468
|
-
eligibilityTokenDecimals?: number | undefined;
|
14469
14354
|
eligibilityTokenThreshold: number;
|
14470
14355
|
eligibilityDuration: number;
|
14471
14356
|
} | {
|
@@ -14648,14 +14533,10 @@ declare const app: Elysia<"", {
|
|
14648
14533
|
hookType: import("@package/resources/enums").BOOST;
|
14649
14534
|
boostTokenChainId: number;
|
14650
14535
|
boostTokenAddress: string;
|
14651
|
-
boostTokenSymbol?: string | undefined;
|
14652
|
-
boostTokenDecimals?: number | undefined;
|
14653
14536
|
boostMultiplicator: number;
|
14654
14537
|
} | {
|
14655
14538
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14656
14539
|
boostTokenAddress: string;
|
14657
|
-
boostTokenDecimals?: number | undefined;
|
14658
|
-
boostTokenSymbol?: string | undefined;
|
14659
14540
|
boostTokenChainId: number;
|
14660
14541
|
boostTokenThreshold: number;
|
14661
14542
|
boostConfiguration: {
|
@@ -14678,8 +14559,6 @@ declare const app: Elysia<"", {
|
|
14678
14559
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14679
14560
|
eligibilityTokenChainId: number;
|
14680
14561
|
eligibilityTokenAddress: string;
|
14681
|
-
eligibilityTokenSymbol?: string | undefined;
|
14682
|
-
eligibilityTokenDecimals?: number | undefined;
|
14683
14562
|
eligibilityTokenThreshold: number;
|
14684
14563
|
eligibilityDuration: number;
|
14685
14564
|
} | {
|
@@ -14864,14 +14743,10 @@ declare const app: Elysia<"", {
|
|
14864
14743
|
hookType: import("@package/resources/enums").BOOST;
|
14865
14744
|
boostTokenChainId: number;
|
14866
14745
|
boostTokenAddress: string;
|
14867
|
-
boostTokenSymbol?: string | undefined;
|
14868
|
-
boostTokenDecimals?: number | undefined;
|
14869
14746
|
boostMultiplicator: number;
|
14870
14747
|
} | {
|
14871
14748
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14872
14749
|
boostTokenAddress: string;
|
14873
|
-
boostTokenDecimals?: number | undefined;
|
14874
|
-
boostTokenSymbol?: string | undefined;
|
14875
14750
|
boostTokenChainId: number;
|
14876
14751
|
boostTokenThreshold: number;
|
14877
14752
|
boostConfiguration: {
|
@@ -14894,8 +14769,6 @@ declare const app: Elysia<"", {
|
|
14894
14769
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14895
14770
|
eligibilityTokenChainId: number;
|
14896
14771
|
eligibilityTokenAddress: string;
|
14897
|
-
eligibilityTokenSymbol?: string | undefined;
|
14898
|
-
eligibilityTokenDecimals?: number | undefined;
|
14899
14772
|
eligibilityTokenThreshold: number;
|
14900
14773
|
eligibilityDuration: number;
|
14901
14774
|
} | {
|
@@ -15079,14 +14952,10 @@ declare const app: Elysia<"", {
|
|
15079
14952
|
hookType: import("@package/resources/enums").BOOST;
|
15080
14953
|
boostTokenChainId: number;
|
15081
14954
|
boostTokenAddress: string;
|
15082
|
-
boostTokenSymbol?: string | undefined;
|
15083
|
-
boostTokenDecimals?: number | undefined;
|
15084
14955
|
boostMultiplicator: number;
|
15085
14956
|
} | {
|
15086
14957
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15087
14958
|
boostTokenAddress: string;
|
15088
|
-
boostTokenDecimals?: number | undefined;
|
15089
|
-
boostTokenSymbol?: string | undefined;
|
15090
14959
|
boostTokenChainId: number;
|
15091
14960
|
boostTokenThreshold: number;
|
15092
14961
|
boostConfiguration: {
|
@@ -15109,8 +14978,6 @@ declare const app: Elysia<"", {
|
|
15109
14978
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15110
14979
|
eligibilityTokenChainId: number;
|
15111
14980
|
eligibilityTokenAddress: string;
|
15112
|
-
eligibilityTokenSymbol?: string | undefined;
|
15113
|
-
eligibilityTokenDecimals?: number | undefined;
|
15114
14981
|
eligibilityTokenThreshold: number;
|
15115
14982
|
eligibilityDuration: number;
|
15116
14983
|
} | {
|
@@ -15293,14 +15160,10 @@ declare const app: Elysia<"", {
|
|
15293
15160
|
hookType: import("@package/resources/enums").BOOST;
|
15294
15161
|
boostTokenChainId: number;
|
15295
15162
|
boostTokenAddress: string;
|
15296
|
-
boostTokenSymbol?: string | undefined;
|
15297
|
-
boostTokenDecimals?: number | undefined;
|
15298
15163
|
boostMultiplicator: number;
|
15299
15164
|
} | {
|
15300
15165
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15301
15166
|
boostTokenAddress: string;
|
15302
|
-
boostTokenDecimals?: number | undefined;
|
15303
|
-
boostTokenSymbol?: string | undefined;
|
15304
15167
|
boostTokenChainId: number;
|
15305
15168
|
boostTokenThreshold: number;
|
15306
15169
|
boostConfiguration: {
|
@@ -15323,8 +15186,6 @@ declare const app: Elysia<"", {
|
|
15323
15186
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15324
15187
|
eligibilityTokenChainId: number;
|
15325
15188
|
eligibilityTokenAddress: string;
|
15326
|
-
eligibilityTokenSymbol?: string | undefined;
|
15327
|
-
eligibilityTokenDecimals?: number | undefined;
|
15328
15189
|
eligibilityTokenThreshold: number;
|
15329
15190
|
eligibilityDuration: number;
|
15330
15191
|
} | {
|
@@ -15507,14 +15368,10 @@ declare const app: Elysia<"", {
|
|
15507
15368
|
hookType: import("@package/resources/enums").BOOST;
|
15508
15369
|
boostTokenChainId: number;
|
15509
15370
|
boostTokenAddress: string;
|
15510
|
-
boostTokenSymbol?: string | undefined;
|
15511
|
-
boostTokenDecimals?: number | undefined;
|
15512
15371
|
boostMultiplicator: number;
|
15513
15372
|
} | {
|
15514
15373
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15515
15374
|
boostTokenAddress: string;
|
15516
|
-
boostTokenDecimals?: number | undefined;
|
15517
|
-
boostTokenSymbol?: string | undefined;
|
15518
15375
|
boostTokenChainId: number;
|
15519
15376
|
boostTokenThreshold: number;
|
15520
15377
|
boostConfiguration: {
|
@@ -15537,8 +15394,6 @@ declare const app: Elysia<"", {
|
|
15537
15394
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15538
15395
|
eligibilityTokenChainId: number;
|
15539
15396
|
eligibilityTokenAddress: string;
|
15540
|
-
eligibilityTokenSymbol?: string | undefined;
|
15541
|
-
eligibilityTokenDecimals?: number | undefined;
|
15542
15397
|
eligibilityTokenThreshold: number;
|
15543
15398
|
eligibilityDuration: number;
|
15544
15399
|
} | {
|
@@ -15721,14 +15576,10 @@ declare const app: Elysia<"", {
|
|
15721
15576
|
hookType: import("@package/resources/enums").BOOST;
|
15722
15577
|
boostTokenChainId: number;
|
15723
15578
|
boostTokenAddress: string;
|
15724
|
-
boostTokenSymbol?: string | undefined;
|
15725
|
-
boostTokenDecimals?: number | undefined;
|
15726
15579
|
boostMultiplicator: number;
|
15727
15580
|
} | {
|
15728
15581
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15729
15582
|
boostTokenAddress: string;
|
15730
|
-
boostTokenDecimals?: number | undefined;
|
15731
|
-
boostTokenSymbol?: string | undefined;
|
15732
15583
|
boostTokenChainId: number;
|
15733
15584
|
boostTokenThreshold: number;
|
15734
15585
|
boostConfiguration: {
|
@@ -15751,8 +15602,6 @@ declare const app: Elysia<"", {
|
|
15751
15602
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15752
15603
|
eligibilityTokenChainId: number;
|
15753
15604
|
eligibilityTokenAddress: string;
|
15754
|
-
eligibilityTokenSymbol?: string | undefined;
|
15755
|
-
eligibilityTokenDecimals?: number | undefined;
|
15756
15605
|
eligibilityTokenThreshold: number;
|
15757
15606
|
eligibilityDuration: number;
|
15758
15607
|
} | {
|
@@ -15936,14 +15785,10 @@ declare const app: Elysia<"", {
|
|
15936
15785
|
hookType: import("@package/resources/enums").BOOST;
|
15937
15786
|
boostTokenChainId: number;
|
15938
15787
|
boostTokenAddress: string;
|
15939
|
-
boostTokenSymbol?: string | undefined;
|
15940
|
-
boostTokenDecimals?: number | undefined;
|
15941
15788
|
boostMultiplicator: number;
|
15942
15789
|
} | {
|
15943
15790
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15944
15791
|
boostTokenAddress: string;
|
15945
|
-
boostTokenDecimals?: number | undefined;
|
15946
|
-
boostTokenSymbol?: string | undefined;
|
15947
15792
|
boostTokenChainId: number;
|
15948
15793
|
boostTokenThreshold: number;
|
15949
15794
|
boostConfiguration: {
|
@@ -15966,8 +15811,6 @@ declare const app: Elysia<"", {
|
|
15966
15811
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15967
15812
|
eligibilityTokenChainId: number;
|
15968
15813
|
eligibilityTokenAddress: string;
|
15969
|
-
eligibilityTokenSymbol?: string | undefined;
|
15970
|
-
eligibilityTokenDecimals?: number | undefined;
|
15971
15814
|
eligibilityTokenThreshold: number;
|
15972
15815
|
eligibilityDuration: number;
|
15973
15816
|
} | {
|
@@ -16154,14 +15997,10 @@ declare const app: Elysia<"", {
|
|
16154
15997
|
hookType: import("@package/resources/enums").BOOST;
|
16155
15998
|
boostTokenChainId: number;
|
16156
15999
|
boostTokenAddress: string;
|
16157
|
-
boostTokenSymbol?: string | undefined;
|
16158
|
-
boostTokenDecimals?: number | undefined;
|
16159
16000
|
boostMultiplicator: number;
|
16160
16001
|
} | {
|
16161
16002
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16162
16003
|
boostTokenAddress: string;
|
16163
|
-
boostTokenDecimals?: number | undefined;
|
16164
|
-
boostTokenSymbol?: string | undefined;
|
16165
16004
|
boostTokenChainId: number;
|
16166
16005
|
boostTokenThreshold: number;
|
16167
16006
|
boostConfiguration: {
|
@@ -16184,8 +16023,6 @@ declare const app: Elysia<"", {
|
|
16184
16023
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16185
16024
|
eligibilityTokenChainId: number;
|
16186
16025
|
eligibilityTokenAddress: string;
|
16187
|
-
eligibilityTokenSymbol?: string | undefined;
|
16188
|
-
eligibilityTokenDecimals?: number | undefined;
|
16189
16026
|
eligibilityTokenThreshold: number;
|
16190
16027
|
eligibilityDuration: number;
|
16191
16028
|
} | {
|
@@ -16367,14 +16204,10 @@ declare const app: Elysia<"", {
|
|
16367
16204
|
hookType: import("@package/resources/enums").BOOST;
|
16368
16205
|
boostTokenChainId: number;
|
16369
16206
|
boostTokenAddress: string;
|
16370
|
-
boostTokenSymbol?: string | undefined;
|
16371
|
-
boostTokenDecimals?: number | undefined;
|
16372
16207
|
boostMultiplicator: number;
|
16373
16208
|
} | {
|
16374
16209
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16375
16210
|
boostTokenAddress: string;
|
16376
|
-
boostTokenDecimals?: number | undefined;
|
16377
|
-
boostTokenSymbol?: string | undefined;
|
16378
16211
|
boostTokenChainId: number;
|
16379
16212
|
boostTokenThreshold: number;
|
16380
16213
|
boostConfiguration: {
|
@@ -16397,8 +16230,6 @@ declare const app: Elysia<"", {
|
|
16397
16230
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16398
16231
|
eligibilityTokenChainId: number;
|
16399
16232
|
eligibilityTokenAddress: string;
|
16400
|
-
eligibilityTokenSymbol?: string | undefined;
|
16401
|
-
eligibilityTokenDecimals?: number | undefined;
|
16402
16233
|
eligibilityTokenThreshold: number;
|
16403
16234
|
eligibilityDuration: number;
|
16404
16235
|
} | {
|
@@ -16580,14 +16411,10 @@ declare const app: Elysia<"", {
|
|
16580
16411
|
hookType: import("@package/resources/enums").BOOST;
|
16581
16412
|
boostTokenChainId: number;
|
16582
16413
|
boostTokenAddress: string;
|
16583
|
-
boostTokenSymbol?: string | undefined;
|
16584
|
-
boostTokenDecimals?: number | undefined;
|
16585
16414
|
boostMultiplicator: number;
|
16586
16415
|
} | {
|
16587
16416
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16588
16417
|
boostTokenAddress: string;
|
16589
|
-
boostTokenDecimals?: number | undefined;
|
16590
|
-
boostTokenSymbol?: string | undefined;
|
16591
16418
|
boostTokenChainId: number;
|
16592
16419
|
boostTokenThreshold: number;
|
16593
16420
|
boostConfiguration: {
|
@@ -16610,8 +16437,6 @@ declare const app: Elysia<"", {
|
|
16610
16437
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16611
16438
|
eligibilityTokenChainId: number;
|
16612
16439
|
eligibilityTokenAddress: string;
|
16613
|
-
eligibilityTokenSymbol?: string | undefined;
|
16614
|
-
eligibilityTokenDecimals?: number | undefined;
|
16615
16440
|
eligibilityTokenThreshold: number;
|
16616
16441
|
eligibilityDuration: number;
|
16617
16442
|
} | {
|
@@ -16793,14 +16618,10 @@ declare const app: Elysia<"", {
|
|
16793
16618
|
hookType: import("@package/resources/enums").BOOST;
|
16794
16619
|
boostTokenChainId: number;
|
16795
16620
|
boostTokenAddress: string;
|
16796
|
-
boostTokenSymbol?: string | undefined;
|
16797
|
-
boostTokenDecimals?: number | undefined;
|
16798
16621
|
boostMultiplicator: number;
|
16799
16622
|
} | {
|
16800
16623
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16801
16624
|
boostTokenAddress: string;
|
16802
|
-
boostTokenDecimals?: number | undefined;
|
16803
|
-
boostTokenSymbol?: string | undefined;
|
16804
16625
|
boostTokenChainId: number;
|
16805
16626
|
boostTokenThreshold: number;
|
16806
16627
|
boostConfiguration: {
|
@@ -16823,8 +16644,6 @@ declare const app: Elysia<"", {
|
|
16823
16644
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16824
16645
|
eligibilityTokenChainId: number;
|
16825
16646
|
eligibilityTokenAddress: string;
|
16826
|
-
eligibilityTokenSymbol?: string | undefined;
|
16827
|
-
eligibilityTokenDecimals?: number | undefined;
|
16828
16647
|
eligibilityTokenThreshold: number;
|
16829
16648
|
eligibilityDuration: number;
|
16830
16649
|
} | {
|
@@ -17009,14 +16828,10 @@ declare const app: Elysia<"", {
|
|
17009
16828
|
hookType: import("@package/resources/enums").BOOST;
|
17010
16829
|
boostTokenChainId: number;
|
17011
16830
|
boostTokenAddress: string;
|
17012
|
-
boostTokenSymbol?: string | undefined;
|
17013
|
-
boostTokenDecimals?: number | undefined;
|
17014
16831
|
boostMultiplicator: number;
|
17015
16832
|
} | {
|
17016
16833
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17017
16834
|
boostTokenAddress: string;
|
17018
|
-
boostTokenDecimals?: number | undefined;
|
17019
|
-
boostTokenSymbol?: string | undefined;
|
17020
16835
|
boostTokenChainId: number;
|
17021
16836
|
boostTokenThreshold: number;
|
17022
16837
|
boostConfiguration: {
|
@@ -17039,8 +16854,6 @@ declare const app: Elysia<"", {
|
|
17039
16854
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17040
16855
|
eligibilityTokenChainId: number;
|
17041
16856
|
eligibilityTokenAddress: string;
|
17042
|
-
eligibilityTokenSymbol?: string | undefined;
|
17043
|
-
eligibilityTokenDecimals?: number | undefined;
|
17044
16857
|
eligibilityTokenThreshold: number;
|
17045
16858
|
eligibilityDuration: number;
|
17046
16859
|
} | {
|
@@ -17222,14 +17035,10 @@ declare const app: Elysia<"", {
|
|
17222
17035
|
hookType: import("@package/resources/enums").BOOST;
|
17223
17036
|
boostTokenChainId: number;
|
17224
17037
|
boostTokenAddress: string;
|
17225
|
-
boostTokenSymbol?: string | undefined;
|
17226
|
-
boostTokenDecimals?: number | undefined;
|
17227
17038
|
boostMultiplicator: number;
|
17228
17039
|
} | {
|
17229
17040
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17230
17041
|
boostTokenAddress: string;
|
17231
|
-
boostTokenDecimals?: number | undefined;
|
17232
|
-
boostTokenSymbol?: string | undefined;
|
17233
17042
|
boostTokenChainId: number;
|
17234
17043
|
boostTokenThreshold: number;
|
17235
17044
|
boostConfiguration: {
|
@@ -17252,8 +17061,6 @@ declare const app: Elysia<"", {
|
|
17252
17061
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17253
17062
|
eligibilityTokenChainId: number;
|
17254
17063
|
eligibilityTokenAddress: string;
|
17255
|
-
eligibilityTokenSymbol?: string | undefined;
|
17256
|
-
eligibilityTokenDecimals?: number | undefined;
|
17257
17064
|
eligibilityTokenThreshold: number;
|
17258
17065
|
eligibilityDuration: number;
|
17259
17066
|
} | {
|
@@ -17438,14 +17245,10 @@ declare const app: Elysia<"", {
|
|
17438
17245
|
hookType: import("@package/resources/enums").BOOST;
|
17439
17246
|
boostTokenChainId: number;
|
17440
17247
|
boostTokenAddress: string;
|
17441
|
-
boostTokenSymbol?: string | undefined;
|
17442
|
-
boostTokenDecimals?: number | undefined;
|
17443
17248
|
boostMultiplicator: number;
|
17444
17249
|
} | {
|
17445
17250
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17446
17251
|
boostTokenAddress: string;
|
17447
|
-
boostTokenDecimals?: number | undefined;
|
17448
|
-
boostTokenSymbol?: string | undefined;
|
17449
17252
|
boostTokenChainId: number;
|
17450
17253
|
boostTokenThreshold: number;
|
17451
17254
|
boostConfiguration: {
|
@@ -17468,8 +17271,6 @@ declare const app: Elysia<"", {
|
|
17468
17271
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17469
17272
|
eligibilityTokenChainId: number;
|
17470
17273
|
eligibilityTokenAddress: string;
|
17471
|
-
eligibilityTokenSymbol?: string | undefined;
|
17472
|
-
eligibilityTokenDecimals?: number | undefined;
|
17473
17274
|
eligibilityTokenThreshold: number;
|
17474
17275
|
eligibilityDuration: number;
|
17475
17276
|
} | {
|
@@ -17659,14 +17460,10 @@ declare const app: Elysia<"", {
|
|
17659
17460
|
hookType: import("@package/resources/enums").BOOST;
|
17660
17461
|
boostTokenChainId: number;
|
17661
17462
|
boostTokenAddress: string;
|
17662
|
-
boostTokenSymbol?: string | undefined;
|
17663
|
-
boostTokenDecimals?: number | undefined;
|
17664
17463
|
boostMultiplicator: number;
|
17665
17464
|
} | {
|
17666
17465
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17667
17466
|
boostTokenAddress: string;
|
17668
|
-
boostTokenDecimals?: number | undefined;
|
17669
|
-
boostTokenSymbol?: string | undefined;
|
17670
17467
|
boostTokenChainId: number;
|
17671
17468
|
boostTokenThreshold: number;
|
17672
17469
|
boostConfiguration: {
|
@@ -17689,8 +17486,6 @@ declare const app: Elysia<"", {
|
|
17689
17486
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17690
17487
|
eligibilityTokenChainId: number;
|
17691
17488
|
eligibilityTokenAddress: string;
|
17692
|
-
eligibilityTokenSymbol?: string | undefined;
|
17693
|
-
eligibilityTokenDecimals?: number | undefined;
|
17694
17489
|
eligibilityTokenThreshold: number;
|
17695
17490
|
eligibilityDuration: number;
|
17696
17491
|
} | {
|
@@ -17875,14 +17670,10 @@ declare const app: Elysia<"", {
|
|
17875
17670
|
hookType: import("@package/resources/enums").BOOST;
|
17876
17671
|
boostTokenChainId: number;
|
17877
17672
|
boostTokenAddress: string;
|
17878
|
-
boostTokenSymbol?: string | undefined;
|
17879
|
-
boostTokenDecimals?: number | undefined;
|
17880
17673
|
boostMultiplicator: number;
|
17881
17674
|
} | {
|
17882
17675
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17883
17676
|
boostTokenAddress: string;
|
17884
|
-
boostTokenDecimals?: number | undefined;
|
17885
|
-
boostTokenSymbol?: string | undefined;
|
17886
17677
|
boostTokenChainId: number;
|
17887
17678
|
boostTokenThreshold: number;
|
17888
17679
|
boostConfiguration: {
|
@@ -17905,8 +17696,6 @@ declare const app: Elysia<"", {
|
|
17905
17696
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17906
17697
|
eligibilityTokenChainId: number;
|
17907
17698
|
eligibilityTokenAddress: string;
|
17908
|
-
eligibilityTokenSymbol?: string | undefined;
|
17909
|
-
eligibilityTokenDecimals?: number | undefined;
|
17910
17699
|
eligibilityTokenThreshold: number;
|
17911
17700
|
eligibilityDuration: number;
|
17912
17701
|
} | {
|
@@ -18094,14 +17883,10 @@ declare const app: Elysia<"", {
|
|
18094
17883
|
hookType: import("@package/resources/enums").BOOST;
|
18095
17884
|
boostTokenChainId: number;
|
18096
17885
|
boostTokenAddress: string;
|
18097
|
-
boostTokenSymbol?: string | undefined;
|
18098
|
-
boostTokenDecimals?: number | undefined;
|
18099
17886
|
boostMultiplicator: number;
|
18100
17887
|
} | {
|
18101
17888
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18102
17889
|
boostTokenAddress: string;
|
18103
|
-
boostTokenDecimals?: number | undefined;
|
18104
|
-
boostTokenSymbol?: string | undefined;
|
18105
17890
|
boostTokenChainId: number;
|
18106
17891
|
boostTokenThreshold: number;
|
18107
17892
|
boostConfiguration: {
|
@@ -18124,8 +17909,6 @@ declare const app: Elysia<"", {
|
|
18124
17909
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18125
17910
|
eligibilityTokenChainId: number;
|
18126
17911
|
eligibilityTokenAddress: string;
|
18127
|
-
eligibilityTokenSymbol?: string | undefined;
|
18128
|
-
eligibilityTokenDecimals?: number | undefined;
|
18129
17912
|
eligibilityTokenThreshold: number;
|
18130
17913
|
eligibilityDuration: number;
|
18131
17914
|
} | {
|
@@ -18304,14 +18087,10 @@ declare const app: Elysia<"", {
|
|
18304
18087
|
hookType: import("@package/resources/enums").BOOST;
|
18305
18088
|
boostTokenChainId: number;
|
18306
18089
|
boostTokenAddress: string;
|
18307
|
-
boostTokenSymbol?: string | undefined;
|
18308
|
-
boostTokenDecimals?: number | undefined;
|
18309
18090
|
boostMultiplicator: number;
|
18310
18091
|
} | {
|
18311
18092
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18312
18093
|
boostTokenAddress: string;
|
18313
|
-
boostTokenDecimals?: number | undefined;
|
18314
|
-
boostTokenSymbol?: string | undefined;
|
18315
18094
|
boostTokenChainId: number;
|
18316
18095
|
boostTokenThreshold: number;
|
18317
18096
|
boostConfiguration: {
|
@@ -18334,8 +18113,6 @@ declare const app: Elysia<"", {
|
|
18334
18113
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18335
18114
|
eligibilityTokenChainId: number;
|
18336
18115
|
eligibilityTokenAddress: string;
|
18337
|
-
eligibilityTokenSymbol?: string | undefined;
|
18338
|
-
eligibilityTokenDecimals?: number | undefined;
|
18339
18116
|
eligibilityTokenThreshold: number;
|
18340
18117
|
eligibilityDuration: number;
|
18341
18118
|
} | {
|
@@ -18523,14 +18300,10 @@ declare const app: Elysia<"", {
|
|
18523
18300
|
hookType: import("@package/resources/enums").BOOST;
|
18524
18301
|
boostTokenChainId: number;
|
18525
18302
|
boostTokenAddress: string;
|
18526
|
-
boostTokenSymbol?: string | undefined;
|
18527
|
-
boostTokenDecimals?: number | undefined;
|
18528
18303
|
boostMultiplicator: number;
|
18529
18304
|
} | {
|
18530
18305
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18531
18306
|
boostTokenAddress: string;
|
18532
|
-
boostTokenDecimals?: number | undefined;
|
18533
|
-
boostTokenSymbol?: string | undefined;
|
18534
18307
|
boostTokenChainId: number;
|
18535
18308
|
boostTokenThreshold: number;
|
18536
18309
|
boostConfiguration: {
|
@@ -18553,8 +18326,6 @@ declare const app: Elysia<"", {
|
|
18553
18326
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18554
18327
|
eligibilityTokenChainId: number;
|
18555
18328
|
eligibilityTokenAddress: string;
|
18556
|
-
eligibilityTokenSymbol?: string | undefined;
|
18557
|
-
eligibilityTokenDecimals?: number | undefined;
|
18558
18329
|
eligibilityTokenThreshold: number;
|
18559
18330
|
eligibilityDuration: number;
|
18560
18331
|
} | {
|
@@ -18736,14 +18507,10 @@ declare const app: Elysia<"", {
|
|
18736
18507
|
hookType: import("@package/resources/enums").BOOST;
|
18737
18508
|
boostTokenChainId: number;
|
18738
18509
|
boostTokenAddress: string;
|
18739
|
-
boostTokenSymbol?: string | undefined;
|
18740
|
-
boostTokenDecimals?: number | undefined;
|
18741
18510
|
boostMultiplicator: number;
|
18742
18511
|
} | {
|
18743
18512
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18744
18513
|
boostTokenAddress: string;
|
18745
|
-
boostTokenDecimals?: number | undefined;
|
18746
|
-
boostTokenSymbol?: string | undefined;
|
18747
18514
|
boostTokenChainId: number;
|
18748
18515
|
boostTokenThreshold: number;
|
18749
18516
|
boostConfiguration: {
|
@@ -18766,8 +18533,6 @@ declare const app: Elysia<"", {
|
|
18766
18533
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18767
18534
|
eligibilityTokenChainId: number;
|
18768
18535
|
eligibilityTokenAddress: string;
|
18769
|
-
eligibilityTokenSymbol?: string | undefined;
|
18770
|
-
eligibilityTokenDecimals?: number | undefined;
|
18771
18536
|
eligibilityTokenThreshold: number;
|
18772
18537
|
eligibilityDuration: number;
|
18773
18538
|
} | {
|
@@ -18950,14 +18715,10 @@ declare const app: Elysia<"", {
|
|
18950
18715
|
hookType: import("@package/resources/enums").BOOST;
|
18951
18716
|
boostTokenChainId: number;
|
18952
18717
|
boostTokenAddress: string;
|
18953
|
-
boostTokenSymbol?: string | undefined;
|
18954
|
-
boostTokenDecimals?: number | undefined;
|
18955
18718
|
boostMultiplicator: number;
|
18956
18719
|
} | {
|
18957
18720
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18958
18721
|
boostTokenAddress: string;
|
18959
|
-
boostTokenDecimals?: number | undefined;
|
18960
|
-
boostTokenSymbol?: string | undefined;
|
18961
18722
|
boostTokenChainId: number;
|
18962
18723
|
boostTokenThreshold: number;
|
18963
18724
|
boostConfiguration: {
|
@@ -18980,8 +18741,6 @@ declare const app: Elysia<"", {
|
|
18980
18741
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18981
18742
|
eligibilityTokenChainId: number;
|
18982
18743
|
eligibilityTokenAddress: string;
|
18983
|
-
eligibilityTokenSymbol?: string | undefined;
|
18984
|
-
eligibilityTokenDecimals?: number | undefined;
|
18985
18744
|
eligibilityTokenThreshold: number;
|
18986
18745
|
eligibilityDuration: number;
|
18987
18746
|
} | {
|
@@ -19166,14 +18925,10 @@ declare const app: Elysia<"", {
|
|
19166
18925
|
hookType: import("@package/resources/enums").BOOST;
|
19167
18926
|
boostTokenChainId: number;
|
19168
18927
|
boostTokenAddress: string;
|
19169
|
-
boostTokenSymbol?: string | undefined;
|
19170
|
-
boostTokenDecimals?: number | undefined;
|
19171
18928
|
boostMultiplicator: number;
|
19172
18929
|
} | {
|
19173
18930
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19174
18931
|
boostTokenAddress: string;
|
19175
|
-
boostTokenDecimals?: number | undefined;
|
19176
|
-
boostTokenSymbol?: string | undefined;
|
19177
18932
|
boostTokenChainId: number;
|
19178
18933
|
boostTokenThreshold: number;
|
19179
18934
|
boostConfiguration: {
|
@@ -19196,8 +18951,6 @@ declare const app: Elysia<"", {
|
|
19196
18951
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19197
18952
|
eligibilityTokenChainId: number;
|
19198
18953
|
eligibilityTokenAddress: string;
|
19199
|
-
eligibilityTokenSymbol?: string | undefined;
|
19200
|
-
eligibilityTokenDecimals?: number | undefined;
|
19201
18954
|
eligibilityTokenThreshold: number;
|
19202
18955
|
eligibilityDuration: number;
|
19203
18956
|
} | {
|
@@ -19379,14 +19132,10 @@ declare const app: Elysia<"", {
|
|
19379
19132
|
hookType: import("@package/resources/enums").BOOST;
|
19380
19133
|
boostTokenChainId: number;
|
19381
19134
|
boostTokenAddress: string;
|
19382
|
-
boostTokenSymbol?: string | undefined;
|
19383
|
-
boostTokenDecimals?: number | undefined;
|
19384
19135
|
boostMultiplicator: number;
|
19385
19136
|
} | {
|
19386
19137
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19387
19138
|
boostTokenAddress: string;
|
19388
|
-
boostTokenDecimals?: number | undefined;
|
19389
|
-
boostTokenSymbol?: string | undefined;
|
19390
19139
|
boostTokenChainId: number;
|
19391
19140
|
boostTokenThreshold: number;
|
19392
19141
|
boostConfiguration: {
|
@@ -19409,8 +19158,6 @@ declare const app: Elysia<"", {
|
|
19409
19158
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19410
19159
|
eligibilityTokenChainId: number;
|
19411
19160
|
eligibilityTokenAddress: string;
|
19412
|
-
eligibilityTokenSymbol?: string | undefined;
|
19413
|
-
eligibilityTokenDecimals?: number | undefined;
|
19414
19161
|
eligibilityTokenThreshold: number;
|
19415
19162
|
eligibilityDuration: number;
|
19416
19163
|
} | {
|
@@ -19595,14 +19342,10 @@ declare const app: Elysia<"", {
|
|
19595
19342
|
hookType: import("@package/resources/enums").BOOST;
|
19596
19343
|
boostTokenChainId: number;
|
19597
19344
|
boostTokenAddress: string;
|
19598
|
-
boostTokenSymbol?: string | undefined;
|
19599
|
-
boostTokenDecimals?: number | undefined;
|
19600
19345
|
boostMultiplicator: number;
|
19601
19346
|
} | {
|
19602
19347
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19603
19348
|
boostTokenAddress: string;
|
19604
|
-
boostTokenDecimals?: number | undefined;
|
19605
|
-
boostTokenSymbol?: string | undefined;
|
19606
19349
|
boostTokenChainId: number;
|
19607
19350
|
boostTokenThreshold: number;
|
19608
19351
|
boostConfiguration: {
|
@@ -19625,8 +19368,6 @@ declare const app: Elysia<"", {
|
|
19625
19368
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19626
19369
|
eligibilityTokenChainId: number;
|
19627
19370
|
eligibilityTokenAddress: string;
|
19628
|
-
eligibilityTokenSymbol?: string | undefined;
|
19629
|
-
eligibilityTokenDecimals?: number | undefined;
|
19630
19371
|
eligibilityTokenThreshold: number;
|
19631
19372
|
eligibilityDuration: number;
|
19632
19373
|
} | {
|
@@ -19808,14 +19549,10 @@ declare const app: Elysia<"", {
|
|
19808
19549
|
hookType: import("@package/resources/enums").BOOST;
|
19809
19550
|
boostTokenChainId: number;
|
19810
19551
|
boostTokenAddress: string;
|
19811
|
-
boostTokenSymbol?: string | undefined;
|
19812
|
-
boostTokenDecimals?: number | undefined;
|
19813
19552
|
boostMultiplicator: number;
|
19814
19553
|
} | {
|
19815
19554
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19816
19555
|
boostTokenAddress: string;
|
19817
|
-
boostTokenDecimals?: number | undefined;
|
19818
|
-
boostTokenSymbol?: string | undefined;
|
19819
19556
|
boostTokenChainId: number;
|
19820
19557
|
boostTokenThreshold: number;
|
19821
19558
|
boostConfiguration: {
|
@@ -19838,8 +19575,6 @@ declare const app: Elysia<"", {
|
|
19838
19575
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19839
19576
|
eligibilityTokenChainId: number;
|
19840
19577
|
eligibilityTokenAddress: string;
|
19841
|
-
eligibilityTokenSymbol?: string | undefined;
|
19842
|
-
eligibilityTokenDecimals?: number | undefined;
|
19843
19578
|
eligibilityTokenThreshold: number;
|
19844
19579
|
eligibilityDuration: number;
|
19845
19580
|
} | {
|
@@ -20021,14 +19756,10 @@ declare const app: Elysia<"", {
|
|
20021
19756
|
hookType: import("@package/resources/enums").BOOST;
|
20022
19757
|
boostTokenChainId: number;
|
20023
19758
|
boostTokenAddress: string;
|
20024
|
-
boostTokenSymbol?: string | undefined;
|
20025
|
-
boostTokenDecimals?: number | undefined;
|
20026
19759
|
boostMultiplicator: number;
|
20027
19760
|
} | {
|
20028
19761
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20029
19762
|
boostTokenAddress: string;
|
20030
|
-
boostTokenDecimals?: number | undefined;
|
20031
|
-
boostTokenSymbol?: string | undefined;
|
20032
19763
|
boostTokenChainId: number;
|
20033
19764
|
boostTokenThreshold: number;
|
20034
19765
|
boostConfiguration: {
|
@@ -20051,8 +19782,6 @@ declare const app: Elysia<"", {
|
|
20051
19782
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20052
19783
|
eligibilityTokenChainId: number;
|
20053
19784
|
eligibilityTokenAddress: string;
|
20054
|
-
eligibilityTokenSymbol?: string | undefined;
|
20055
|
-
eligibilityTokenDecimals?: number | undefined;
|
20056
19785
|
eligibilityTokenThreshold: number;
|
20057
19786
|
eligibilityDuration: number;
|
20058
19787
|
} | {
|
@@ -20237,14 +19966,10 @@ declare const app: Elysia<"", {
|
|
20237
19966
|
hookType: import("@package/resources/enums").BOOST;
|
20238
19967
|
boostTokenChainId: number;
|
20239
19968
|
boostTokenAddress: string;
|
20240
|
-
boostTokenSymbol?: string | undefined;
|
20241
|
-
boostTokenDecimals?: number | undefined;
|
20242
19969
|
boostMultiplicator: number;
|
20243
19970
|
} | {
|
20244
19971
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20245
19972
|
boostTokenAddress: string;
|
20246
|
-
boostTokenDecimals?: number | undefined;
|
20247
|
-
boostTokenSymbol?: string | undefined;
|
20248
19973
|
boostTokenChainId: number;
|
20249
19974
|
boostTokenThreshold: number;
|
20250
19975
|
boostConfiguration: {
|
@@ -20267,8 +19992,6 @@ declare const app: Elysia<"", {
|
|
20267
19992
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20268
19993
|
eligibilityTokenChainId: number;
|
20269
19994
|
eligibilityTokenAddress: string;
|
20270
|
-
eligibilityTokenSymbol?: string | undefined;
|
20271
|
-
eligibilityTokenDecimals?: number | undefined;
|
20272
19995
|
eligibilityTokenThreshold: number;
|
20273
19996
|
eligibilityDuration: number;
|
20274
19997
|
} | {
|
@@ -20450,14 +20173,10 @@ declare const app: Elysia<"", {
|
|
20450
20173
|
hookType: import("@package/resources/enums").BOOST;
|
20451
20174
|
boostTokenChainId: number;
|
20452
20175
|
boostTokenAddress: string;
|
20453
|
-
boostTokenSymbol?: string | undefined;
|
20454
|
-
boostTokenDecimals?: number | undefined;
|
20455
20176
|
boostMultiplicator: number;
|
20456
20177
|
} | {
|
20457
20178
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20458
20179
|
boostTokenAddress: string;
|
20459
|
-
boostTokenDecimals?: number | undefined;
|
20460
|
-
boostTokenSymbol?: string | undefined;
|
20461
20180
|
boostTokenChainId: number;
|
20462
20181
|
boostTokenThreshold: number;
|
20463
20182
|
boostConfiguration: {
|
@@ -20480,8 +20199,6 @@ declare const app: Elysia<"", {
|
|
20480
20199
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20481
20200
|
eligibilityTokenChainId: number;
|
20482
20201
|
eligibilityTokenAddress: string;
|
20483
|
-
eligibilityTokenSymbol?: string | undefined;
|
20484
|
-
eligibilityTokenDecimals?: number | undefined;
|
20485
20202
|
eligibilityTokenThreshold: number;
|
20486
20203
|
eligibilityDuration: number;
|
20487
20204
|
} | {
|
@@ -20663,14 +20380,10 @@ declare const app: Elysia<"", {
|
|
20663
20380
|
hookType: import("@package/resources/enums").BOOST;
|
20664
20381
|
boostTokenChainId: number;
|
20665
20382
|
boostTokenAddress: string;
|
20666
|
-
boostTokenSymbol?: string | undefined;
|
20667
|
-
boostTokenDecimals?: number | undefined;
|
20668
20383
|
boostMultiplicator: number;
|
20669
20384
|
} | {
|
20670
20385
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20671
20386
|
boostTokenAddress: string;
|
20672
|
-
boostTokenDecimals?: number | undefined;
|
20673
|
-
boostTokenSymbol?: string | undefined;
|
20674
20387
|
boostTokenChainId: number;
|
20675
20388
|
boostTokenThreshold: number;
|
20676
20389
|
boostConfiguration: {
|
@@ -20693,8 +20406,6 @@ declare const app: Elysia<"", {
|
|
20693
20406
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20694
20407
|
eligibilityTokenChainId: number;
|
20695
20408
|
eligibilityTokenAddress: string;
|
20696
|
-
eligibilityTokenSymbol?: string | undefined;
|
20697
|
-
eligibilityTokenDecimals?: number | undefined;
|
20698
20409
|
eligibilityTokenThreshold: number;
|
20699
20410
|
eligibilityDuration: number;
|
20700
20411
|
} | {
|
@@ -20879,14 +20590,10 @@ declare const app: Elysia<"", {
|
|
20879
20590
|
hookType: import("@package/resources/enums").BOOST;
|
20880
20591
|
boostTokenChainId: number;
|
20881
20592
|
boostTokenAddress: string;
|
20882
|
-
boostTokenSymbol?: string | undefined;
|
20883
|
-
boostTokenDecimals?: number | undefined;
|
20884
20593
|
boostMultiplicator: number;
|
20885
20594
|
} | {
|
20886
20595
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20887
20596
|
boostTokenAddress: string;
|
20888
|
-
boostTokenDecimals?: number | undefined;
|
20889
|
-
boostTokenSymbol?: string | undefined;
|
20890
20597
|
boostTokenChainId: number;
|
20891
20598
|
boostTokenThreshold: number;
|
20892
20599
|
boostConfiguration: {
|
@@ -20909,8 +20616,6 @@ declare const app: Elysia<"", {
|
|
20909
20616
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20910
20617
|
eligibilityTokenChainId: number;
|
20911
20618
|
eligibilityTokenAddress: string;
|
20912
|
-
eligibilityTokenSymbol?: string | undefined;
|
20913
|
-
eligibilityTokenDecimals?: number | undefined;
|
20914
20619
|
eligibilityTokenThreshold: number;
|
20915
20620
|
eligibilityDuration: number;
|
20916
20621
|
} | {
|
@@ -21092,14 +20797,10 @@ declare const app: Elysia<"", {
|
|
21092
20797
|
hookType: import("@package/resources/enums").BOOST;
|
21093
20798
|
boostTokenChainId: number;
|
21094
20799
|
boostTokenAddress: string;
|
21095
|
-
boostTokenSymbol?: string | undefined;
|
21096
|
-
boostTokenDecimals?: number | undefined;
|
21097
20800
|
boostMultiplicator: number;
|
21098
20801
|
} | {
|
21099
20802
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21100
20803
|
boostTokenAddress: string;
|
21101
|
-
boostTokenDecimals?: number | undefined;
|
21102
|
-
boostTokenSymbol?: string | undefined;
|
21103
20804
|
boostTokenChainId: number;
|
21104
20805
|
boostTokenThreshold: number;
|
21105
20806
|
boostConfiguration: {
|
@@ -21122,8 +20823,6 @@ declare const app: Elysia<"", {
|
|
21122
20823
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21123
20824
|
eligibilityTokenChainId: number;
|
21124
20825
|
eligibilityTokenAddress: string;
|
21125
|
-
eligibilityTokenSymbol?: string | undefined;
|
21126
|
-
eligibilityTokenDecimals?: number | undefined;
|
21127
20826
|
eligibilityTokenThreshold: number;
|
21128
20827
|
eligibilityDuration: number;
|
21129
20828
|
} | {
|
@@ -21305,14 +21004,10 @@ declare const app: Elysia<"", {
|
|
21305
21004
|
hookType: import("@package/resources/enums").BOOST;
|
21306
21005
|
boostTokenChainId: number;
|
21307
21006
|
boostTokenAddress: string;
|
21308
|
-
boostTokenSymbol?: string | undefined;
|
21309
|
-
boostTokenDecimals?: number | undefined;
|
21310
21007
|
boostMultiplicator: number;
|
21311
21008
|
} | {
|
21312
21009
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21313
21010
|
boostTokenAddress: string;
|
21314
|
-
boostTokenDecimals?: number | undefined;
|
21315
|
-
boostTokenSymbol?: string | undefined;
|
21316
21011
|
boostTokenChainId: number;
|
21317
21012
|
boostTokenThreshold: number;
|
21318
21013
|
boostConfiguration: {
|
@@ -21335,8 +21030,6 @@ declare const app: Elysia<"", {
|
|
21335
21030
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21336
21031
|
eligibilityTokenChainId: number;
|
21337
21032
|
eligibilityTokenAddress: string;
|
21338
|
-
eligibilityTokenSymbol?: string | undefined;
|
21339
|
-
eligibilityTokenDecimals?: number | undefined;
|
21340
21033
|
eligibilityTokenThreshold: number;
|
21341
21034
|
eligibilityDuration: number;
|
21342
21035
|
} | {
|
@@ -21519,14 +21212,10 @@ declare const app: Elysia<"", {
|
|
21519
21212
|
hookType: import("@package/resources/enums").BOOST;
|
21520
21213
|
boostTokenChainId: number;
|
21521
21214
|
boostTokenAddress: string;
|
21522
|
-
boostTokenSymbol?: string | undefined;
|
21523
|
-
boostTokenDecimals?: number | undefined;
|
21524
21215
|
boostMultiplicator: number;
|
21525
21216
|
} | {
|
21526
21217
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21527
21218
|
boostTokenAddress: string;
|
21528
|
-
boostTokenDecimals?: number | undefined;
|
21529
|
-
boostTokenSymbol?: string | undefined;
|
21530
21219
|
boostTokenChainId: number;
|
21531
21220
|
boostTokenThreshold: number;
|
21532
21221
|
boostConfiguration: {
|
@@ -21549,8 +21238,6 @@ declare const app: Elysia<"", {
|
|
21549
21238
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21550
21239
|
eligibilityTokenChainId: number;
|
21551
21240
|
eligibilityTokenAddress: string;
|
21552
|
-
eligibilityTokenSymbol?: string | undefined;
|
21553
|
-
eligibilityTokenDecimals?: number | undefined;
|
21554
21241
|
eligibilityTokenThreshold: number;
|
21555
21242
|
eligibilityDuration: number;
|
21556
21243
|
} | {
|
@@ -21733,14 +21420,10 @@ declare const app: Elysia<"", {
|
|
21733
21420
|
hookType: import("@package/resources/enums").BOOST;
|
21734
21421
|
boostTokenChainId: number;
|
21735
21422
|
boostTokenAddress: string;
|
21736
|
-
boostTokenSymbol?: string | undefined;
|
21737
|
-
boostTokenDecimals?: number | undefined;
|
21738
21423
|
boostMultiplicator: number;
|
21739
21424
|
} | {
|
21740
21425
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21741
21426
|
boostTokenAddress: string;
|
21742
|
-
boostTokenDecimals?: number | undefined;
|
21743
|
-
boostTokenSymbol?: string | undefined;
|
21744
21427
|
boostTokenChainId: number;
|
21745
21428
|
boostTokenThreshold: number;
|
21746
21429
|
boostConfiguration: {
|
@@ -21763,8 +21446,6 @@ declare const app: Elysia<"", {
|
|
21763
21446
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21764
21447
|
eligibilityTokenChainId: number;
|
21765
21448
|
eligibilityTokenAddress: string;
|
21766
|
-
eligibilityTokenSymbol?: string | undefined;
|
21767
|
-
eligibilityTokenDecimals?: number | undefined;
|
21768
21449
|
eligibilityTokenThreshold: number;
|
21769
21450
|
eligibilityDuration: number;
|
21770
21451
|
} | {
|
@@ -21947,14 +21628,10 @@ declare const app: Elysia<"", {
|
|
21947
21628
|
hookType: import("@package/resources/enums").BOOST;
|
21948
21629
|
boostTokenChainId: number;
|
21949
21630
|
boostTokenAddress: string;
|
21950
|
-
boostTokenSymbol?: string | undefined;
|
21951
|
-
boostTokenDecimals?: number | undefined;
|
21952
21631
|
boostMultiplicator: number;
|
21953
21632
|
} | {
|
21954
21633
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21955
21634
|
boostTokenAddress: string;
|
21956
|
-
boostTokenDecimals?: number | undefined;
|
21957
|
-
boostTokenSymbol?: string | undefined;
|
21958
21635
|
boostTokenChainId: number;
|
21959
21636
|
boostTokenThreshold: number;
|
21960
21637
|
boostConfiguration: {
|
@@ -21977,8 +21654,6 @@ declare const app: Elysia<"", {
|
|
21977
21654
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21978
21655
|
eligibilityTokenChainId: number;
|
21979
21656
|
eligibilityTokenAddress: string;
|
21980
|
-
eligibilityTokenSymbol?: string | undefined;
|
21981
|
-
eligibilityTokenDecimals?: number | undefined;
|
21982
21657
|
eligibilityTokenThreshold: number;
|
21983
21658
|
eligibilityDuration: number;
|
21984
21659
|
} | {
|
@@ -22160,14 +21835,10 @@ declare const app: Elysia<"", {
|
|
22160
21835
|
hookType: import("@package/resources/enums").BOOST;
|
22161
21836
|
boostTokenChainId: number;
|
22162
21837
|
boostTokenAddress: string;
|
22163
|
-
boostTokenSymbol?: string | undefined;
|
22164
|
-
boostTokenDecimals?: number | undefined;
|
22165
21838
|
boostMultiplicator: number;
|
22166
21839
|
} | {
|
22167
21840
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22168
21841
|
boostTokenAddress: string;
|
22169
|
-
boostTokenDecimals?: number | undefined;
|
22170
|
-
boostTokenSymbol?: string | undefined;
|
22171
21842
|
boostTokenChainId: number;
|
22172
21843
|
boostTokenThreshold: number;
|
22173
21844
|
boostConfiguration: {
|
@@ -22190,8 +21861,6 @@ declare const app: Elysia<"", {
|
|
22190
21861
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22191
21862
|
eligibilityTokenChainId: number;
|
22192
21863
|
eligibilityTokenAddress: string;
|
22193
|
-
eligibilityTokenSymbol?: string | undefined;
|
22194
|
-
eligibilityTokenDecimals?: number | undefined;
|
22195
21864
|
eligibilityTokenThreshold: number;
|
22196
21865
|
eligibilityDuration: number;
|
22197
21866
|
} | {
|
@@ -22375,14 +22044,10 @@ declare const app: Elysia<"", {
|
|
22375
22044
|
hookType: import("@package/resources/enums").BOOST;
|
22376
22045
|
boostTokenChainId: number;
|
22377
22046
|
boostTokenAddress: string;
|
22378
|
-
boostTokenSymbol?: string | undefined;
|
22379
|
-
boostTokenDecimals?: number | undefined;
|
22380
22047
|
boostMultiplicator: number;
|
22381
22048
|
} | {
|
22382
22049
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22383
22050
|
boostTokenAddress: string;
|
22384
|
-
boostTokenDecimals?: number | undefined;
|
22385
|
-
boostTokenSymbol?: string | undefined;
|
22386
22051
|
boostTokenChainId: number;
|
22387
22052
|
boostTokenThreshold: number;
|
22388
22053
|
boostConfiguration: {
|
@@ -22405,8 +22070,6 @@ declare const app: Elysia<"", {
|
|
22405
22070
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22406
22071
|
eligibilityTokenChainId: number;
|
22407
22072
|
eligibilityTokenAddress: string;
|
22408
|
-
eligibilityTokenSymbol?: string | undefined;
|
22409
|
-
eligibilityTokenDecimals?: number | undefined;
|
22410
22073
|
eligibilityTokenThreshold: number;
|
22411
22074
|
eligibilityDuration: number;
|
22412
22075
|
} | {
|
@@ -22588,14 +22251,10 @@ declare const app: Elysia<"", {
|
|
22588
22251
|
hookType: import("@package/resources/enums").BOOST;
|
22589
22252
|
boostTokenChainId: number;
|
22590
22253
|
boostTokenAddress: string;
|
22591
|
-
boostTokenSymbol?: string | undefined;
|
22592
|
-
boostTokenDecimals?: number | undefined;
|
22593
22254
|
boostMultiplicator: number;
|
22594
22255
|
} | {
|
22595
22256
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22596
22257
|
boostTokenAddress: string;
|
22597
|
-
boostTokenDecimals?: number | undefined;
|
22598
|
-
boostTokenSymbol?: string | undefined;
|
22599
22258
|
boostTokenChainId: number;
|
22600
22259
|
boostTokenThreshold: number;
|
22601
22260
|
boostConfiguration: {
|
@@ -22618,8 +22277,6 @@ declare const app: Elysia<"", {
|
|
22618
22277
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22619
22278
|
eligibilityTokenChainId: number;
|
22620
22279
|
eligibilityTokenAddress: string;
|
22621
|
-
eligibilityTokenSymbol?: string | undefined;
|
22622
|
-
eligibilityTokenDecimals?: number | undefined;
|
22623
22280
|
eligibilityTokenThreshold: number;
|
22624
22281
|
eligibilityDuration: number;
|
22625
22282
|
} | {
|
@@ -22801,14 +22458,10 @@ declare const app: Elysia<"", {
|
|
22801
22458
|
hookType: import("@package/resources/enums").BOOST;
|
22802
22459
|
boostTokenChainId: number;
|
22803
22460
|
boostTokenAddress: string;
|
22804
|
-
boostTokenSymbol?: string | undefined;
|
22805
|
-
boostTokenDecimals?: number | undefined;
|
22806
22461
|
boostMultiplicator: number;
|
22807
22462
|
} | {
|
22808
22463
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22809
22464
|
boostTokenAddress: string;
|
22810
|
-
boostTokenDecimals?: number | undefined;
|
22811
|
-
boostTokenSymbol?: string | undefined;
|
22812
22465
|
boostTokenChainId: number;
|
22813
22466
|
boostTokenThreshold: number;
|
22814
22467
|
boostConfiguration: {
|
@@ -22831,8 +22484,6 @@ declare const app: Elysia<"", {
|
|
22831
22484
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22832
22485
|
eligibilityTokenChainId: number;
|
22833
22486
|
eligibilityTokenAddress: string;
|
22834
|
-
eligibilityTokenSymbol?: string | undefined;
|
22835
|
-
eligibilityTokenDecimals?: number | undefined;
|
22836
22487
|
eligibilityTokenThreshold: number;
|
22837
22488
|
eligibilityDuration: number;
|
22838
22489
|
} | {
|
@@ -23014,14 +22665,10 @@ declare const app: Elysia<"", {
|
|
23014
22665
|
hookType: import("@package/resources/enums").BOOST;
|
23015
22666
|
boostTokenChainId: number;
|
23016
22667
|
boostTokenAddress: string;
|
23017
|
-
boostTokenSymbol?: string | undefined;
|
23018
|
-
boostTokenDecimals?: number | undefined;
|
23019
22668
|
boostMultiplicator: number;
|
23020
22669
|
} | {
|
23021
22670
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23022
22671
|
boostTokenAddress: string;
|
23023
|
-
boostTokenDecimals?: number | undefined;
|
23024
|
-
boostTokenSymbol?: string | undefined;
|
23025
22672
|
boostTokenChainId: number;
|
23026
22673
|
boostTokenThreshold: number;
|
23027
22674
|
boostConfiguration: {
|
@@ -23044,8 +22691,6 @@ declare const app: Elysia<"", {
|
|
23044
22691
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23045
22692
|
eligibilityTokenChainId: number;
|
23046
22693
|
eligibilityTokenAddress: string;
|
23047
|
-
eligibilityTokenSymbol?: string | undefined;
|
23048
|
-
eligibilityTokenDecimals?: number | undefined;
|
23049
22694
|
eligibilityTokenThreshold: number;
|
23050
22695
|
eligibilityDuration: number;
|
23051
22696
|
} | {
|
@@ -23227,14 +22872,10 @@ declare const app: Elysia<"", {
|
|
23227
22872
|
hookType: import("@package/resources/enums").BOOST;
|
23228
22873
|
boostTokenChainId: number;
|
23229
22874
|
boostTokenAddress: string;
|
23230
|
-
boostTokenSymbol?: string | undefined;
|
23231
|
-
boostTokenDecimals?: number | undefined;
|
23232
22875
|
boostMultiplicator: number;
|
23233
22876
|
} | {
|
23234
22877
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23235
22878
|
boostTokenAddress: string;
|
23236
|
-
boostTokenDecimals?: number | undefined;
|
23237
|
-
boostTokenSymbol?: string | undefined;
|
23238
22879
|
boostTokenChainId: number;
|
23239
22880
|
boostTokenThreshold: number;
|
23240
22881
|
boostConfiguration: {
|
@@ -23257,8 +22898,6 @@ declare const app: Elysia<"", {
|
|
23257
22898
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23258
22899
|
eligibilityTokenChainId: number;
|
23259
22900
|
eligibilityTokenAddress: string;
|
23260
|
-
eligibilityTokenSymbol?: string | undefined;
|
23261
|
-
eligibilityTokenDecimals?: number | undefined;
|
23262
22901
|
eligibilityTokenThreshold: number;
|
23263
22902
|
eligibilityDuration: number;
|
23264
22903
|
} | {
|
@@ -23440,14 +23079,10 @@ declare const app: Elysia<"", {
|
|
23440
23079
|
hookType: import("@package/resources/enums").BOOST;
|
23441
23080
|
boostTokenChainId: number;
|
23442
23081
|
boostTokenAddress: string;
|
23443
|
-
boostTokenSymbol?: string | undefined;
|
23444
|
-
boostTokenDecimals?: number | undefined;
|
23445
23082
|
boostMultiplicator: number;
|
23446
23083
|
} | {
|
23447
23084
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23448
23085
|
boostTokenAddress: string;
|
23449
|
-
boostTokenDecimals?: number | undefined;
|
23450
|
-
boostTokenSymbol?: string | undefined;
|
23451
23086
|
boostTokenChainId: number;
|
23452
23087
|
boostTokenThreshold: number;
|
23453
23088
|
boostConfiguration: {
|
@@ -23470,8 +23105,6 @@ declare const app: Elysia<"", {
|
|
23470
23105
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23471
23106
|
eligibilityTokenChainId: number;
|
23472
23107
|
eligibilityTokenAddress: string;
|
23473
|
-
eligibilityTokenSymbol?: string | undefined;
|
23474
|
-
eligibilityTokenDecimals?: number | undefined;
|
23475
23108
|
eligibilityTokenThreshold: number;
|
23476
23109
|
eligibilityDuration: number;
|
23477
23110
|
} | {
|
@@ -23653,14 +23286,10 @@ declare const app: Elysia<"", {
|
|
23653
23286
|
hookType: import("@package/resources/enums").BOOST;
|
23654
23287
|
boostTokenChainId: number;
|
23655
23288
|
boostTokenAddress: string;
|
23656
|
-
boostTokenSymbol?: string | undefined;
|
23657
|
-
boostTokenDecimals?: number | undefined;
|
23658
23289
|
boostMultiplicator: number;
|
23659
23290
|
} | {
|
23660
23291
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23661
23292
|
boostTokenAddress: string;
|
23662
|
-
boostTokenDecimals?: number | undefined;
|
23663
|
-
boostTokenSymbol?: string | undefined;
|
23664
23293
|
boostTokenChainId: number;
|
23665
23294
|
boostTokenThreshold: number;
|
23666
23295
|
boostConfiguration: {
|
@@ -23683,8 +23312,6 @@ declare const app: Elysia<"", {
|
|
23683
23312
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23684
23313
|
eligibilityTokenChainId: number;
|
23685
23314
|
eligibilityTokenAddress: string;
|
23686
|
-
eligibilityTokenSymbol?: string | undefined;
|
23687
|
-
eligibilityTokenDecimals?: number | undefined;
|
23688
23315
|
eligibilityTokenThreshold: number;
|
23689
23316
|
eligibilityDuration: number;
|
23690
23317
|
} | {
|
@@ -23866,14 +23493,10 @@ declare const app: Elysia<"", {
|
|
23866
23493
|
hookType: import("@package/resources/enums").BOOST;
|
23867
23494
|
boostTokenChainId: number;
|
23868
23495
|
boostTokenAddress: string;
|
23869
|
-
boostTokenSymbol?: string | undefined;
|
23870
|
-
boostTokenDecimals?: number | undefined;
|
23871
23496
|
boostMultiplicator: number;
|
23872
23497
|
} | {
|
23873
23498
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23874
23499
|
boostTokenAddress: string;
|
23875
|
-
boostTokenDecimals?: number | undefined;
|
23876
|
-
boostTokenSymbol?: string | undefined;
|
23877
23500
|
boostTokenChainId: number;
|
23878
23501
|
boostTokenThreshold: number;
|
23879
23502
|
boostConfiguration: {
|
@@ -23896,8 +23519,6 @@ declare const app: Elysia<"", {
|
|
23896
23519
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23897
23520
|
eligibilityTokenChainId: number;
|
23898
23521
|
eligibilityTokenAddress: string;
|
23899
|
-
eligibilityTokenSymbol?: string | undefined;
|
23900
|
-
eligibilityTokenDecimals?: number | undefined;
|
23901
23522
|
eligibilityTokenThreshold: number;
|
23902
23523
|
eligibilityDuration: number;
|
23903
23524
|
} | {
|
@@ -24079,14 +23700,10 @@ declare const app: Elysia<"", {
|
|
24079
23700
|
hookType: import("@package/resources/enums").BOOST;
|
24080
23701
|
boostTokenChainId: number;
|
24081
23702
|
boostTokenAddress: string;
|
24082
|
-
boostTokenSymbol?: string | undefined;
|
24083
|
-
boostTokenDecimals?: number | undefined;
|
24084
23703
|
boostMultiplicator: number;
|
24085
23704
|
} | {
|
24086
23705
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
24087
23706
|
boostTokenAddress: string;
|
24088
|
-
boostTokenDecimals?: number | undefined;
|
24089
|
-
boostTokenSymbol?: string | undefined;
|
24090
23707
|
boostTokenChainId: number;
|
24091
23708
|
boostTokenThreshold: number;
|
24092
23709
|
boostConfiguration: {
|
@@ -24109,8 +23726,6 @@ declare const app: Elysia<"", {
|
|
24109
23726
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
24110
23727
|
eligibilityTokenChainId: number;
|
24111
23728
|
eligibilityTokenAddress: string;
|
24112
|
-
eligibilityTokenSymbol?: string | undefined;
|
24113
|
-
eligibilityTokenDecimals?: number | undefined;
|
24114
23729
|
eligibilityTokenThreshold: number;
|
24115
23730
|
eligibilityDuration: number;
|
24116
23731
|
} | {
|
@@ -24300,14 +23915,10 @@ declare const app: Elysia<"", {
|
|
24300
23915
|
hookType: import("@package/resources/enums").BOOST;
|
24301
23916
|
boostTokenChainId: number;
|
24302
23917
|
boostTokenAddress: string;
|
24303
|
-
boostTokenSymbol?: string | undefined;
|
24304
|
-
boostTokenDecimals?: number | undefined;
|
24305
23918
|
boostMultiplicator: number;
|
24306
23919
|
} | {
|
24307
23920
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
24308
23921
|
boostTokenAddress: string;
|
24309
|
-
boostTokenDecimals?: number | undefined;
|
24310
|
-
boostTokenSymbol?: string | undefined;
|
24311
23922
|
boostTokenChainId: number;
|
24312
23923
|
boostTokenThreshold: number;
|
24313
23924
|
boostConfiguration: {
|
@@ -24330,8 +23941,6 @@ declare const app: Elysia<"", {
|
|
24330
23941
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
24331
23942
|
eligibilityTokenChainId: number;
|
24332
23943
|
eligibilityTokenAddress: string;
|
24333
|
-
eligibilityTokenSymbol?: string | undefined;
|
24334
|
-
eligibilityTokenDecimals?: number | undefined;
|
24335
23944
|
eligibilityTokenThreshold: number;
|
24336
23945
|
eligibilityDuration: number;
|
24337
23946
|
} | {
|
@@ -24521,14 +24130,10 @@ declare const app: Elysia<"", {
|
|
24521
24130
|
hookType: import("@package/resources/enums").BOOST;
|
24522
24131
|
boostTokenChainId: number;
|
24523
24132
|
boostTokenAddress: string;
|
24524
|
-
boostTokenSymbol?: string | undefined;
|
24525
|
-
boostTokenDecimals?: number | undefined;
|
24526
24133
|
boostMultiplicator: number;
|
24527
24134
|
} | {
|
24528
24135
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
24529
24136
|
boostTokenAddress: string;
|
24530
|
-
boostTokenDecimals?: number | undefined;
|
24531
|
-
boostTokenSymbol?: string | undefined;
|
24532
24137
|
boostTokenChainId: number;
|
24533
24138
|
boostTokenThreshold: number;
|
24534
24139
|
boostConfiguration: {
|
@@ -24551,8 +24156,6 @@ declare const app: Elysia<"", {
|
|
24551
24156
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
24552
24157
|
eligibilityTokenChainId: number;
|
24553
24158
|
eligibilityTokenAddress: string;
|
24554
|
-
eligibilityTokenSymbol?: string | undefined;
|
24555
|
-
eligibilityTokenDecimals?: number | undefined;
|
24556
24159
|
eligibilityTokenThreshold: number;
|
24557
24160
|
eligibilityDuration: number;
|
24558
24161
|
} | {
|
@@ -24733,14 +24336,10 @@ declare const app: Elysia<"", {
|
|
24733
24336
|
hookType: import("@package/resources/enums").BOOST;
|
24734
24337
|
boostTokenChainId: number;
|
24735
24338
|
boostTokenAddress: string;
|
24736
|
-
boostTokenSymbol?: string | undefined;
|
24737
|
-
boostTokenDecimals?: number | undefined;
|
24738
24339
|
boostMultiplicator: number;
|
24739
24340
|
} | {
|
24740
24341
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
24741
24342
|
boostTokenAddress: string;
|
24742
|
-
boostTokenDecimals?: number | undefined;
|
24743
|
-
boostTokenSymbol?: string | undefined;
|
24744
24343
|
boostTokenChainId: number;
|
24745
24344
|
boostTokenThreshold: number;
|
24746
24345
|
boostConfiguration: {
|
@@ -24763,8 +24362,6 @@ declare const app: Elysia<"", {
|
|
24763
24362
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
24764
24363
|
eligibilityTokenChainId: number;
|
24765
24364
|
eligibilityTokenAddress: string;
|
24766
|
-
eligibilityTokenSymbol?: string | undefined;
|
24767
|
-
eligibilityTokenDecimals?: number | undefined;
|
24768
24365
|
eligibilityTokenThreshold: number;
|
24769
24366
|
eligibilityDuration: number;
|
24770
24367
|
} | {
|
@@ -24947,14 +24544,10 @@ declare const app: Elysia<"", {
|
|
24947
24544
|
hookType: import("@package/resources/enums").BOOST;
|
24948
24545
|
boostTokenChainId: number;
|
24949
24546
|
boostTokenAddress: string;
|
24950
|
-
boostTokenSymbol?: string | undefined;
|
24951
|
-
boostTokenDecimals?: number | undefined;
|
24952
24547
|
boostMultiplicator: number;
|
24953
24548
|
} | {
|
24954
24549
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
24955
24550
|
boostTokenAddress: string;
|
24956
|
-
boostTokenDecimals?: number | undefined;
|
24957
|
-
boostTokenSymbol?: string | undefined;
|
24958
24551
|
boostTokenChainId: number;
|
24959
24552
|
boostTokenThreshold: number;
|
24960
24553
|
boostConfiguration: {
|
@@ -24977,8 +24570,6 @@ declare const app: Elysia<"", {
|
|
24977
24570
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
24978
24571
|
eligibilityTokenChainId: number;
|
24979
24572
|
eligibilityTokenAddress: string;
|
24980
|
-
eligibilityTokenSymbol?: string | undefined;
|
24981
|
-
eligibilityTokenDecimals?: number | undefined;
|
24982
24573
|
eligibilityTokenThreshold: number;
|
24983
24574
|
eligibilityDuration: number;
|
24984
24575
|
} | {
|