@merkl/api 1.0.66 → 1.0.68
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 +424 -422
- package/dist/src/engine/implementations/Erc20/subTypes/index.d.ts +2 -1
- package/dist/src/index.d.ts +210 -209
- package/dist/src/modules/v4/blacklist/blacklist.controller.d.ts +2 -2
- package/dist/src/modules/v4/blacklist/blacklist.repository.d.ts +2 -2
- package/dist/src/modules/v4/blacklist/blacklist.service.d.ts +2 -2
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +41 -41
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +179 -193
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +49 -62
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +44 -44
- package/dist/src/modules/v4/creator/creator.controller.d.ts +12 -12
- package/dist/src/modules/v4/creator/creator.repository.d.ts +6 -6
- package/dist/src/modules/v4/creator/creator.service.d.ts +12 -12
- package/dist/src/modules/v4/node/node.controller.d.ts +2 -1
- package/dist/src/modules/v4/node/node.repository.d.ts +1 -18
- package/dist/src/modules/v4/node/node.service.d.ts +1 -18
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +80 -80
- package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +3 -3
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +13 -13
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +192 -192
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +54 -54
- package/dist/src/modules/v4/price/price.controller.d.ts +4 -4
- package/dist/src/modules/v4/price/price.repository.d.ts +5 -5
- package/dist/src/modules/v4/price/price.service.d.ts +4 -4
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +23 -1
- package/dist/src/modules/v4/programPayload/subPayloads/hypurrFi.d.ts +9 -1
- package/dist/src/modules/v4/protocol/protocol.repository.d.ts +6 -6
- package/dist/src/modules/v4/reward/reward.repository.d.ts +11 -11
- package/dist/src/modules/v4/reward/reward.service.d.ts +67 -67
- package/dist/src/modules/v4/router.d.ts +210 -209
- package/dist/src/modules/v4/status/status.controller.d.ts +14 -14
- package/dist/src/modules/v4/status/status.repository.d.ts +20 -20
- package/dist/src/modules/v4/status/status.service.d.ts +16 -16
- package/dist/src/modules/v4/uniswap/uniswap.repository.d.ts +2 -10
- package/dist/src/modules/v4/user/user.controller.d.ts +11 -11
- package/dist/src/utils/queries/allCampaigns.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -1602,16 +1602,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1602
1602
|
tokenSymbol?: string | undefined;
|
1603
1603
|
type?: string | undefined;
|
1604
1604
|
endTimestamp?: string | undefined;
|
1605
|
+
subType?: number | undefined;
|
1605
1606
|
opportunityId?: string | undefined;
|
1606
1607
|
creatorAddress?: string | undefined;
|
1607
|
-
mainProtocolId?: string | undefined;
|
1608
|
-
subType?: number | undefined;
|
1609
1608
|
rootCampaignId?: string | undefined;
|
1610
1609
|
parentCampaignId?: string | undefined;
|
1610
|
+
mainProtocolId?: string | undefined;
|
1611
1611
|
creatorId?: string | undefined;
|
1612
|
-
mainParameter?: string | undefined;
|
1613
1612
|
test?: boolean | undefined;
|
1614
1613
|
page?: number | undefined;
|
1614
|
+
mainParameter?: string | undefined;
|
1615
1615
|
creatorTag?: string | undefined;
|
1616
1616
|
distributionChainIds?: number[] | undefined;
|
1617
1617
|
types?: string[] | undefined;
|
@@ -1634,8 +1634,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1634
1634
|
tags: string[];
|
1635
1635
|
} | null | undefined;
|
1636
1636
|
depositUrl?: string | undefined;
|
1637
|
-
explorerAddress?: string | undefined;
|
1638
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
1639
1637
|
aprRecord?: {
|
1640
1638
|
timestamp: string | bigint;
|
1641
1639
|
cumulated: number;
|
@@ -1646,6 +1644,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1646
1644
|
identifier: string;
|
1647
1645
|
}[];
|
1648
1646
|
} | undefined;
|
1647
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
1648
|
+
explorerAddress?: string | undefined;
|
1649
1649
|
tvlRecord?: {
|
1650
1650
|
timestamp: string | bigint;
|
1651
1651
|
total: number;
|
@@ -1709,9 +1709,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1709
1709
|
creatorId?: string | null | undefined;
|
1710
1710
|
address: string;
|
1711
1711
|
} | undefined;
|
1712
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
1713
|
-
rootCampaignId?: string | undefined;
|
1714
|
-
parentCampaignId?: string | undefined;
|
1715
1712
|
campaignStatus?: {
|
1716
1713
|
error?: string | undefined;
|
1717
1714
|
details?: any;
|
@@ -1719,6 +1716,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1719
1716
|
computedUntil: string | number;
|
1720
1717
|
processingStarted: string | number;
|
1721
1718
|
} | undefined;
|
1719
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
1720
|
+
rootCampaignId?: string | undefined;
|
1721
|
+
parentCampaignId?: string | undefined;
|
1722
1722
|
distributionChain?: {
|
1723
1723
|
explorers?: {
|
1724
1724
|
chainId: number;
|
@@ -1753,9 +1753,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1753
1753
|
computeChainId: number;
|
1754
1754
|
distributionChainId: number;
|
1755
1755
|
endTimestamp: string | number;
|
1756
|
-
creatorAddress: string;
|
1757
|
-
subType: number | null;
|
1758
|
-
createdAt: string;
|
1759
1756
|
chain: {
|
1760
1757
|
explorers?: {
|
1761
1758
|
chainId: number;
|
@@ -1766,14 +1763,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1766
1763
|
id: number;
|
1767
1764
|
icon: string;
|
1768
1765
|
};
|
1766
|
+
subType: number | null;
|
1767
|
+
creatorAddress: string;
|
1768
|
+
createdAt: string;
|
1769
1769
|
}[];
|
1770
1770
|
action: string;
|
1771
1771
|
type: string;
|
1772
|
-
howToSteps: string[];
|
1773
|
-
identifier: string;
|
1774
|
-
dailyRewards: number;
|
1775
|
-
tags: string[];
|
1776
|
-
lastCampaignCreatedAt: number;
|
1777
1772
|
chain: {
|
1778
1773
|
explorers?: {
|
1779
1774
|
chainId: number;
|
@@ -1784,6 +1779,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1784
1779
|
id: number;
|
1785
1780
|
icon: string;
|
1786
1781
|
};
|
1782
|
+
identifier: string;
|
1783
|
+
howToSteps: string[];
|
1784
|
+
dailyRewards: number;
|
1785
|
+
tags: string[];
|
1786
|
+
lastCampaignCreatedAt: number;
|
1787
1787
|
}[];
|
1788
1788
|
readonly 500: {
|
1789
1789
|
info: string;
|
@@ -1836,8 +1836,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1836
1836
|
tags: string[];
|
1837
1837
|
} | null | undefined;
|
1838
1838
|
depositUrl?: string | undefined;
|
1839
|
-
explorerAddress?: string | undefined;
|
1840
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
1841
1839
|
aprRecord?: {
|
1842
1840
|
timestamp: string | bigint;
|
1843
1841
|
cumulated: number;
|
@@ -1848,6 +1846,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1848
1846
|
identifier: string;
|
1849
1847
|
}[];
|
1850
1848
|
} | undefined;
|
1849
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
1850
|
+
explorerAddress?: string | undefined;
|
1851
1851
|
tvlRecord?: {
|
1852
1852
|
timestamp: string | bigint;
|
1853
1853
|
total: number;
|
@@ -1906,11 +1906,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1906
1906
|
chainId: number;
|
1907
1907
|
action: string;
|
1908
1908
|
type: string;
|
1909
|
-
howToSteps: string[];
|
1910
|
-
identifier: string;
|
1911
|
-
dailyRewards: number;
|
1912
|
-
tags: string[];
|
1913
|
-
lastCampaignCreatedAt: number;
|
1914
1909
|
chain: {
|
1915
1910
|
explorers?: {
|
1916
1911
|
chainId: number;
|
@@ -1921,6 +1916,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1921
1916
|
id: number;
|
1922
1917
|
icon: string;
|
1923
1918
|
};
|
1919
|
+
identifier: string;
|
1920
|
+
howToSteps: string[];
|
1921
|
+
dailyRewards: number;
|
1922
|
+
tags: string[];
|
1923
|
+
lastCampaignCreatedAt: number;
|
1924
1924
|
};
|
1925
1925
|
readonly 500: {
|
1926
1926
|
info: string;
|
@@ -1974,8 +1974,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1974
1974
|
tags: string[];
|
1975
1975
|
} | null | undefined;
|
1976
1976
|
depositUrl?: string | undefined;
|
1977
|
-
explorerAddress?: string | undefined;
|
1978
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
1979
1977
|
aprRecord?: {
|
1980
1978
|
timestamp: string | bigint;
|
1981
1979
|
cumulated: number;
|
@@ -1986,6 +1984,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
1986
1984
|
identifier: string;
|
1987
1985
|
}[];
|
1988
1986
|
} | undefined;
|
1987
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
1988
|
+
explorerAddress?: string | undefined;
|
1989
1989
|
tvlRecord?: {
|
1990
1990
|
timestamp: string | bigint;
|
1991
1991
|
total: number;
|
@@ -2049,9 +2049,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2049
2049
|
creatorId?: string | null | undefined;
|
2050
2050
|
address: string;
|
2051
2051
|
} | undefined;
|
2052
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
2053
|
-
rootCampaignId?: string | undefined;
|
2054
|
-
parentCampaignId?: string | undefined;
|
2055
2052
|
campaignStatus?: {
|
2056
2053
|
error?: string | undefined;
|
2057
2054
|
details?: any;
|
@@ -2059,6 +2056,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2059
2056
|
computedUntil: string | number;
|
2060
2057
|
processingStarted: string | number;
|
2061
2058
|
} | undefined;
|
2059
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
2060
|
+
rootCampaignId?: string | undefined;
|
2061
|
+
parentCampaignId?: string | undefined;
|
2062
2062
|
distributionChain?: {
|
2063
2063
|
explorers?: {
|
2064
2064
|
chainId: number;
|
@@ -2093,9 +2093,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2093
2093
|
computeChainId: number;
|
2094
2094
|
distributionChainId: number;
|
2095
2095
|
endTimestamp: string | number;
|
2096
|
-
creatorAddress: string;
|
2097
|
-
subType: number | null;
|
2098
|
-
createdAt: string;
|
2099
2096
|
chain: {
|
2100
2097
|
explorers?: {
|
2101
2098
|
chainId: number;
|
@@ -2106,14 +2103,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2106
2103
|
id: number;
|
2107
2104
|
icon: string;
|
2108
2105
|
};
|
2106
|
+
subType: number | null;
|
2107
|
+
creatorAddress: string;
|
2108
|
+
createdAt: string;
|
2109
2109
|
}[];
|
2110
2110
|
action: string;
|
2111
2111
|
type: string;
|
2112
|
-
howToSteps: string[];
|
2113
|
-
identifier: string;
|
2114
|
-
dailyRewards: number;
|
2115
|
-
tags: string[];
|
2116
|
-
lastCampaignCreatedAt: number;
|
2117
2112
|
chain: {
|
2118
2113
|
explorers?: {
|
2119
2114
|
chainId: number;
|
@@ -2124,6 +2119,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2124
2119
|
id: number;
|
2125
2120
|
icon: string;
|
2126
2121
|
};
|
2122
|
+
identifier: string;
|
2123
|
+
howToSteps: string[];
|
2124
|
+
dailyRewards: number;
|
2125
|
+
tags: string[];
|
2126
|
+
lastCampaignCreatedAt: number;
|
2127
2127
|
};
|
2128
2128
|
readonly 500: {
|
2129
2129
|
info: string;
|
@@ -2168,8 +2168,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2168
2168
|
type?: string | undefined;
|
2169
2169
|
search?: string | undefined;
|
2170
2170
|
creatorAddress?: string | undefined;
|
2171
|
-
mainProtocolId?: string | undefined;
|
2172
2171
|
identifier?: string | undefined;
|
2172
|
+
mainProtocolId?: string | undefined;
|
2173
2173
|
tags?: string | undefined;
|
2174
2174
|
test?: boolean | undefined;
|
2175
2175
|
page?: number | undefined;
|
@@ -2195,8 +2195,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2195
2195
|
tags: string[];
|
2196
2196
|
} | null | undefined;
|
2197
2197
|
depositUrl?: string | undefined;
|
2198
|
-
explorerAddress?: string | undefined;
|
2199
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
2200
2198
|
aprRecord?: {
|
2201
2199
|
timestamp: string | bigint;
|
2202
2200
|
cumulated: number;
|
@@ -2207,6 +2205,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2207
2205
|
identifier: string;
|
2208
2206
|
}[];
|
2209
2207
|
} | undefined;
|
2208
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
2209
|
+
explorerAddress?: string | undefined;
|
2210
2210
|
tvlRecord?: {
|
2211
2211
|
timestamp: string | bigint;
|
2212
2212
|
total: number;
|
@@ -2265,11 +2265,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2265
2265
|
chainId: number;
|
2266
2266
|
action: string;
|
2267
2267
|
type: string;
|
2268
|
-
howToSteps: string[];
|
2269
|
-
identifier: string;
|
2270
|
-
dailyRewards: number;
|
2271
|
-
tags: string[];
|
2272
|
-
lastCampaignCreatedAt: number;
|
2273
2268
|
chain: {
|
2274
2269
|
explorers?: {
|
2275
2270
|
chainId: number;
|
@@ -2280,6 +2275,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2280
2275
|
id: number;
|
2281
2276
|
icon: string;
|
2282
2277
|
};
|
2278
|
+
identifier: string;
|
2279
|
+
howToSteps: string[];
|
2280
|
+
dailyRewards: number;
|
2281
|
+
tags: string[];
|
2282
|
+
lastCampaignCreatedAt: number;
|
2283
2283
|
} | null)[];
|
2284
2284
|
422: {
|
2285
2285
|
type: "validation";
|
@@ -2314,8 +2314,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2314
2314
|
type?: string | undefined;
|
2315
2315
|
search?: string | undefined;
|
2316
2316
|
creatorAddress?: string | undefined;
|
2317
|
-
mainProtocolId?: string | undefined;
|
2318
2317
|
identifier?: string | undefined;
|
2318
|
+
mainProtocolId?: string | undefined;
|
2319
2319
|
tags?: string | undefined;
|
2320
2320
|
test?: boolean | undefined;
|
2321
2321
|
page?: number | undefined;
|
@@ -2364,8 +2364,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2364
2364
|
type?: string | undefined;
|
2365
2365
|
search?: string | undefined;
|
2366
2366
|
creatorAddress?: string | undefined;
|
2367
|
-
mainProtocolId?: string | undefined;
|
2368
2367
|
identifier?: string | undefined;
|
2368
|
+
mainProtocolId?: string | undefined;
|
2369
2369
|
tags?: string | undefined;
|
2370
2370
|
test?: boolean | undefined;
|
2371
2371
|
page?: number | undefined;
|
@@ -2424,8 +2424,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2424
2424
|
type?: string | undefined;
|
2425
2425
|
search?: string | undefined;
|
2426
2426
|
creatorAddress?: string | undefined;
|
2427
|
-
mainProtocolId?: string | undefined;
|
2428
2427
|
identifier?: string | undefined;
|
2428
|
+
mainProtocolId?: string | undefined;
|
2429
2429
|
tags?: string | undefined;
|
2430
2430
|
test?: boolean | undefined;
|
2431
2431
|
page?: number | undefined;
|
@@ -2486,8 +2486,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2486
2486
|
type?: string | undefined;
|
2487
2487
|
search?: string | undefined;
|
2488
2488
|
creatorAddress?: string | undefined;
|
2489
|
-
mainProtocolId?: string | undefined;
|
2490
2489
|
identifier?: string | undefined;
|
2490
|
+
mainProtocolId?: string | undefined;
|
2491
2491
|
tags?: string | undefined;
|
2492
2492
|
test?: boolean | undefined;
|
2493
2493
|
page?: number | undefined;
|
@@ -2542,8 +2542,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2542
2542
|
type?: string | undefined;
|
2543
2543
|
search?: string | undefined;
|
2544
2544
|
creatorAddress?: string | undefined;
|
2545
|
-
mainProtocolId?: string | undefined;
|
2546
2545
|
identifier?: string | undefined;
|
2546
|
+
mainProtocolId?: string | undefined;
|
2547
2547
|
tags?: string | undefined;
|
2548
2548
|
test?: boolean | undefined;
|
2549
2549
|
page?: number | undefined;
|
@@ -2599,8 +2599,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2599
2599
|
type?: string | undefined;
|
2600
2600
|
search?: string | undefined;
|
2601
2601
|
creatorAddress?: string | undefined;
|
2602
|
-
mainProtocolId?: string | undefined;
|
2603
2602
|
identifier?: string | undefined;
|
2603
|
+
mainProtocolId?: string | undefined;
|
2604
2604
|
tags?: string | undefined;
|
2605
2605
|
test?: boolean | undefined;
|
2606
2606
|
page?: number | undefined;
|
@@ -2678,6 +2678,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2678
2678
|
explorerAddress: string | undefined;
|
2679
2679
|
tags: string[];
|
2680
2680
|
} | {
|
2681
|
+
Protocols: {
|
2682
|
+
name: string;
|
2683
|
+
description: string;
|
2684
|
+
id: string;
|
2685
|
+
url: string;
|
2686
|
+
icon: string;
|
2687
|
+
tags: string[];
|
2688
|
+
}[];
|
2681
2689
|
Tokens: {
|
2682
2690
|
symbol: string;
|
2683
2691
|
name: string | null;
|
@@ -2694,14 +2702,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2694
2702
|
verified: boolean;
|
2695
2703
|
displaySymbol: string;
|
2696
2704
|
}[];
|
2697
|
-
Protocols: {
|
2698
|
-
name: string;
|
2699
|
-
description: string;
|
2700
|
-
id: string;
|
2701
|
-
url: string;
|
2702
|
-
icon: string;
|
2703
|
-
tags: string[];
|
2704
|
-
}[];
|
2705
2705
|
name: string;
|
2706
2706
|
apr: number;
|
2707
2707
|
tvl: number;
|
@@ -2712,11 +2712,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2712
2712
|
action: import("@package/databases").OpportunityAction;
|
2713
2713
|
type: string;
|
2714
2714
|
depositUrl: string | null;
|
2715
|
-
explorerAddress: string | null;
|
2716
|
-
howToSteps: string[];
|
2717
|
-
mainProtocolId: string | null;
|
2718
2715
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
2719
2716
|
identifier: string;
|
2717
|
+
howToSteps: string[];
|
2718
|
+
explorerAddress: string | null;
|
2719
|
+
mainProtocolId: string | null;
|
2720
2720
|
dailyRewards: number;
|
2721
2721
|
tags: string[];
|
2722
2722
|
lastCampaignCreatedAt: Date;
|
@@ -2758,11 +2758,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2758
2758
|
action: import("@package/databases").OpportunityAction;
|
2759
2759
|
type: string;
|
2760
2760
|
depositUrl: string | null;
|
2761
|
-
explorerAddress: string | null;
|
2762
|
-
howToSteps: string[];
|
2763
|
-
mainProtocolId: string | null;
|
2764
2761
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
2765
2762
|
identifier: string;
|
2763
|
+
howToSteps: string[];
|
2764
|
+
explorerAddress: string | null;
|
2765
|
+
mainProtocolId: string | null;
|
2766
2766
|
dailyRewards: number;
|
2767
2767
|
tags: string[];
|
2768
2768
|
lastCampaignCreatedAt: Date;
|
@@ -2790,8 +2790,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2790
2790
|
description?: string | undefined;
|
2791
2791
|
action?: "POOL" | "INVALID" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "SWAP" | undefined;
|
2792
2792
|
depositUrl?: string | undefined;
|
2793
|
-
explorerAddress?: string | undefined;
|
2794
2793
|
howToSteps?: string[] | undefined;
|
2794
|
+
explorerAddress?: string | undefined;
|
2795
2795
|
mainProtocolId?: string | undefined;
|
2796
2796
|
};
|
2797
2797
|
params: {
|
@@ -2811,11 +2811,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2811
2811
|
action: import("@package/databases").OpportunityAction;
|
2812
2812
|
type: string;
|
2813
2813
|
depositUrl: string | null;
|
2814
|
-
explorerAddress: string | null;
|
2815
|
-
howToSteps: string[];
|
2816
|
-
mainProtocolId: string | null;
|
2817
2814
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
2818
2815
|
identifier: string;
|
2816
|
+
howToSteps: string[];
|
2817
|
+
explorerAddress: string | null;
|
2818
|
+
mainProtocolId: string | null;
|
2819
2819
|
dailyRewards: number;
|
2820
2820
|
tags: string[];
|
2821
2821
|
lastCampaignCreatedAt: Date;
|
@@ -2839,7 +2839,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2839
2839
|
":id": {
|
2840
2840
|
override: {
|
2841
2841
|
delete: {
|
2842
|
-
body: ("name" | "description" | "action" | "depositUrl" | "
|
2842
|
+
body: ("name" | "description" | "action" | "depositUrl" | "howToSteps" | "explorerAddress" | "mainProtocolId")[];
|
2843
2843
|
params: {
|
2844
2844
|
id: string;
|
2845
2845
|
};
|
@@ -2879,6 +2879,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2879
2879
|
explorerAddress: string | undefined;
|
2880
2880
|
tags: string[];
|
2881
2881
|
} | {
|
2882
|
+
Protocols: {
|
2883
|
+
name: string;
|
2884
|
+
description: string;
|
2885
|
+
id: string;
|
2886
|
+
url: string;
|
2887
|
+
icon: string;
|
2888
|
+
tags: string[];
|
2889
|
+
}[];
|
2882
2890
|
Tokens: {
|
2883
2891
|
symbol: string;
|
2884
2892
|
name: string | null;
|
@@ -2895,14 +2903,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2895
2903
|
verified: boolean;
|
2896
2904
|
displaySymbol: string;
|
2897
2905
|
}[];
|
2898
|
-
Protocols: {
|
2899
|
-
name: string;
|
2900
|
-
description: string;
|
2901
|
-
id: string;
|
2902
|
-
url: string;
|
2903
|
-
icon: string;
|
2904
|
-
tags: string[];
|
2905
|
-
}[];
|
2906
2906
|
name: string;
|
2907
2907
|
apr: number;
|
2908
2908
|
tvl: number;
|
@@ -2913,11 +2913,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2913
2913
|
action: import("@package/databases").OpportunityAction;
|
2914
2914
|
type: string;
|
2915
2915
|
depositUrl: string | null;
|
2916
|
-
explorerAddress: string | null;
|
2917
|
-
howToSteps: string[];
|
2918
|
-
mainProtocolId: string | null;
|
2919
2916
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
2920
2917
|
identifier: string;
|
2918
|
+
howToSteps: string[];
|
2919
|
+
explorerAddress: string | null;
|
2920
|
+
mainProtocolId: string | null;
|
2921
2921
|
dailyRewards: number;
|
2922
2922
|
tags: string[];
|
2923
2923
|
lastCampaignCreatedAt: Date;
|
@@ -2970,18 +2970,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2970
2970
|
campaignId: string;
|
2971
2971
|
description: string | null;
|
2972
2972
|
id: string;
|
2973
|
-
params: import("@prisma/client/runtime/
|
2973
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
2974
2974
|
amount: string;
|
2975
2975
|
startTimestamp: bigint;
|
2976
2976
|
type: string;
|
2977
2977
|
computeChainId: number;
|
2978
2978
|
distributionChainId: number;
|
2979
2979
|
endTimestamp: bigint;
|
2980
|
-
opportunityId: string;
|
2981
|
-
creatorAddress: string;
|
2982
2980
|
distributionType: import("@package/databases").DistributionType;
|
2983
2981
|
subType: number | null;
|
2984
2982
|
rewardTokenId: string;
|
2983
|
+
opportunityId: string;
|
2984
|
+
creatorAddress: string;
|
2985
2985
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
2986
2986
|
createdAt: Date;
|
2987
2987
|
rootCampaignId: string | null;
|
@@ -3019,6 +3019,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3019
3019
|
explorerAddress: string | undefined;
|
3020
3020
|
tags: string[];
|
3021
3021
|
} | {
|
3022
|
+
Protocols: {
|
3023
|
+
name: string;
|
3024
|
+
description: string;
|
3025
|
+
id: string;
|
3026
|
+
url: string;
|
3027
|
+
icon: string;
|
3028
|
+
tags: string[];
|
3029
|
+
}[];
|
3022
3030
|
Tokens: {
|
3023
3031
|
symbol: string;
|
3024
3032
|
name: string | null;
|
@@ -3035,14 +3043,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3035
3043
|
verified: boolean;
|
3036
3044
|
displaySymbol: string;
|
3037
3045
|
}[];
|
3038
|
-
Protocols: {
|
3039
|
-
name: string;
|
3040
|
-
description: string;
|
3041
|
-
id: string;
|
3042
|
-
url: string;
|
3043
|
-
icon: string;
|
3044
|
-
tags: string[];
|
3045
|
-
}[];
|
3046
3046
|
name: string;
|
3047
3047
|
apr: number;
|
3048
3048
|
tvl: number;
|
@@ -3053,11 +3053,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3053
3053
|
action: import("@package/databases").OpportunityAction;
|
3054
3054
|
type: string;
|
3055
3055
|
depositUrl: string | null;
|
3056
|
-
explorerAddress: string | null;
|
3057
|
-
howToSteps: string[];
|
3058
|
-
mainProtocolId: string | null;
|
3059
3056
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
3060
3057
|
identifier: string;
|
3058
|
+
howToSteps: string[];
|
3059
|
+
explorerAddress: string | null;
|
3060
|
+
mainProtocolId: string | null;
|
3061
3061
|
dailyRewards: number;
|
3062
3062
|
tags: string[];
|
3063
3063
|
lastCampaignCreatedAt: Date;
|
@@ -3093,9 +3093,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3093
3093
|
creatorId?: string | null | undefined;
|
3094
3094
|
address: string;
|
3095
3095
|
} | undefined;
|
3096
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
3097
|
-
rootCampaignId?: string | undefined;
|
3098
|
-
parentCampaignId?: string | undefined;
|
3099
3096
|
campaignStatus?: {
|
3100
3097
|
error?: string | undefined;
|
3101
3098
|
details?: any;
|
@@ -3103,6 +3100,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3103
3100
|
computedUntil: string | number;
|
3104
3101
|
processingStarted: string | number;
|
3105
3102
|
} | undefined;
|
3103
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
3104
|
+
rootCampaignId?: string | undefined;
|
3105
|
+
parentCampaignId?: string | undefined;
|
3106
3106
|
distributionChain?: {
|
3107
3107
|
explorers?: {
|
3108
3108
|
chainId: number;
|
@@ -3137,9 +3137,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3137
3137
|
computeChainId: number;
|
3138
3138
|
distributionChainId: number;
|
3139
3139
|
endTimestamp: string | number;
|
3140
|
-
creatorAddress: string;
|
3141
|
-
subType: number | null;
|
3142
|
-
createdAt: string;
|
3143
3140
|
chain: {
|
3144
3141
|
explorers?: {
|
3145
3142
|
chainId: number;
|
@@ -3150,6 +3147,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3150
3147
|
id: number;
|
3151
3148
|
icon: string;
|
3152
3149
|
};
|
3150
|
+
subType: number | null;
|
3151
|
+
creatorAddress: string;
|
3152
|
+
createdAt: string;
|
3153
3153
|
};
|
3154
3154
|
422: {
|
3155
3155
|
type: "validation";
|
@@ -3372,16 +3372,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3372
3372
|
tokenSymbol?: string | undefined;
|
3373
3373
|
type?: string | undefined;
|
3374
3374
|
endTimestamp?: string | undefined;
|
3375
|
+
subType?: number | undefined;
|
3375
3376
|
opportunityId?: string | undefined;
|
3376
3377
|
creatorAddress?: string | undefined;
|
3377
|
-
mainProtocolId?: string | undefined;
|
3378
|
-
subType?: number | undefined;
|
3379
3378
|
rootCampaignId?: string | undefined;
|
3380
3379
|
parentCampaignId?: string | undefined;
|
3380
|
+
mainProtocolId?: string | undefined;
|
3381
3381
|
creatorId?: string | undefined;
|
3382
|
-
mainParameter?: string | undefined;
|
3383
3382
|
test?: boolean | undefined;
|
3384
3383
|
page?: number | undefined;
|
3384
|
+
mainParameter?: string | undefined;
|
3385
3385
|
creatorTag?: string | undefined;
|
3386
3386
|
distributionChainIds?: number[] | undefined;
|
3387
3387
|
types?: string[] | undefined;
|
@@ -3398,9 +3398,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3398
3398
|
creatorId?: string | null | undefined;
|
3399
3399
|
address: string;
|
3400
3400
|
} | undefined;
|
3401
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
3402
|
-
rootCampaignId?: string | undefined;
|
3403
|
-
parentCampaignId?: string | undefined;
|
3404
3401
|
campaignStatus?: {
|
3405
3402
|
error?: string | undefined;
|
3406
3403
|
details?: any;
|
@@ -3408,6 +3405,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3408
3405
|
computedUntil: string | number;
|
3409
3406
|
processingStarted: string | number;
|
3410
3407
|
} | undefined;
|
3408
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
3409
|
+
rootCampaignId?: string | undefined;
|
3410
|
+
parentCampaignId?: string | undefined;
|
3411
3411
|
distributionChain?: {
|
3412
3412
|
explorers?: {
|
3413
3413
|
chainId: number;
|
@@ -3442,9 +3442,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3442
3442
|
computeChainId: number;
|
3443
3443
|
distributionChainId: number;
|
3444
3444
|
endTimestamp: string | number;
|
3445
|
-
creatorAddress: string;
|
3446
|
-
subType: number | null;
|
3447
|
-
createdAt: string;
|
3448
3445
|
chain: {
|
3449
3446
|
explorers?: {
|
3450
3447
|
chainId: number;
|
@@ -3455,6 +3452,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3455
3452
|
id: number;
|
3456
3453
|
icon: string;
|
3457
3454
|
};
|
3455
|
+
subType: number | null;
|
3456
|
+
creatorAddress: string;
|
3457
|
+
createdAt: string;
|
3458
3458
|
}[];
|
3459
3459
|
422: {
|
3460
3460
|
type: "validation";
|
@@ -3486,16 +3486,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3486
3486
|
tokenSymbol?: string | undefined;
|
3487
3487
|
type?: string | undefined;
|
3488
3488
|
endTimestamp?: string | undefined;
|
3489
|
+
subType?: number | undefined;
|
3489
3490
|
opportunityId?: string | undefined;
|
3490
3491
|
creatorAddress?: string | undefined;
|
3491
|
-
mainProtocolId?: string | undefined;
|
3492
|
-
subType?: number | undefined;
|
3493
3492
|
rootCampaignId?: string | undefined;
|
3494
3493
|
parentCampaignId?: string | undefined;
|
3494
|
+
mainProtocolId?: string | undefined;
|
3495
3495
|
creatorId?: string | undefined;
|
3496
|
-
mainParameter?: string | undefined;
|
3497
3496
|
test?: boolean | undefined;
|
3498
3497
|
page?: number | undefined;
|
3498
|
+
mainParameter?: string | undefined;
|
3499
3499
|
creatorTag?: string | undefined;
|
3500
3500
|
distributionChainIds?: number[] | undefined;
|
3501
3501
|
types?: string[] | undefined;
|
@@ -3537,16 +3537,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3537
3537
|
tokenSymbol?: string | undefined;
|
3538
3538
|
type?: string | undefined;
|
3539
3539
|
endTimestamp?: string | undefined;
|
3540
|
+
subType?: number | undefined;
|
3540
3541
|
opportunityId?: string | undefined;
|
3541
3542
|
creatorAddress?: string | undefined;
|
3542
|
-
mainProtocolId?: string | undefined;
|
3543
|
-
subType?: number | undefined;
|
3544
3543
|
rootCampaignId?: string | undefined;
|
3545
3544
|
parentCampaignId?: string | undefined;
|
3545
|
+
mainProtocolId?: string | undefined;
|
3546
3546
|
creatorId?: string | undefined;
|
3547
|
-
mainParameter?: string | undefined;
|
3548
3547
|
test?: boolean | undefined;
|
3549
3548
|
page?: number | undefined;
|
3549
|
+
mainParameter?: string | undefined;
|
3550
3550
|
creatorTag?: string | undefined;
|
3551
3551
|
distributionChainIds?: number[] | undefined;
|
3552
3552
|
types?: string[] | undefined;
|
@@ -3593,16 +3593,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3593
3593
|
tokenSymbol?: string | undefined;
|
3594
3594
|
type?: string | undefined;
|
3595
3595
|
endTimestamp?: string | undefined;
|
3596
|
+
subType?: number | undefined;
|
3596
3597
|
opportunityId?: string | undefined;
|
3597
3598
|
creatorAddress?: string | undefined;
|
3598
|
-
mainProtocolId?: string | undefined;
|
3599
|
-
subType?: number | undefined;
|
3600
3599
|
rootCampaignId?: string | undefined;
|
3601
3600
|
parentCampaignId?: string | undefined;
|
3601
|
+
mainProtocolId?: string | undefined;
|
3602
3602
|
creatorId?: string | undefined;
|
3603
|
-
mainParameter?: string | undefined;
|
3604
3603
|
test?: boolean | undefined;
|
3605
3604
|
page?: number | undefined;
|
3605
|
+
mainParameter?: string | undefined;
|
3606
3606
|
creatorTag?: string | undefined;
|
3607
3607
|
distributionChainIds?: number[] | undefined;
|
3608
3608
|
types?: string[] | undefined;
|
@@ -3650,16 +3650,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3650
3650
|
tokenSymbol?: string | undefined;
|
3651
3651
|
type?: string | undefined;
|
3652
3652
|
endTimestamp?: string | undefined;
|
3653
|
+
subType?: number | undefined;
|
3653
3654
|
opportunityId?: string | undefined;
|
3654
3655
|
creatorAddress?: string | undefined;
|
3655
|
-
mainProtocolId?: string | undefined;
|
3656
|
-
subType?: number | undefined;
|
3657
3656
|
rootCampaignId?: string | undefined;
|
3658
3657
|
parentCampaignId?: string | undefined;
|
3658
|
+
mainProtocolId?: string | undefined;
|
3659
3659
|
creatorId?: string | undefined;
|
3660
|
-
mainParameter?: string | undefined;
|
3661
3660
|
test?: boolean | undefined;
|
3662
3661
|
page?: number | undefined;
|
3662
|
+
mainParameter?: string | undefined;
|
3663
3663
|
creatorTag?: string | undefined;
|
3664
3664
|
distributionChainIds?: number[] | undefined;
|
3665
3665
|
types?: string[] | undefined;
|
@@ -3934,8 +3934,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3934
3934
|
campaignId?: string | undefined;
|
3935
3935
|
id?: string | undefined;
|
3936
3936
|
amount?: string | undefined;
|
3937
|
-
creatorAddress?: string | undefined;
|
3938
3937
|
subType?: number | undefined;
|
3938
|
+
creatorAddress?: string | undefined;
|
3939
3939
|
rewardToken: string;
|
3940
3940
|
params: any;
|
3941
3941
|
startTimestamp: number;
|
@@ -3972,8 +3972,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3972
3972
|
campaignId?: string | undefined;
|
3973
3973
|
id?: string | undefined;
|
3974
3974
|
amount?: string | undefined;
|
3975
|
-
creatorAddress?: string | undefined;
|
3976
3975
|
subType?: number | undefined;
|
3976
|
+
creatorAddress?: string | undefined;
|
3977
3977
|
rewardToken: string;
|
3978
3978
|
params: any;
|
3979
3979
|
startTimestamp: number;
|
@@ -3992,18 +3992,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
3992
3992
|
campaignId: string;
|
3993
3993
|
description: string | null;
|
3994
3994
|
id: string;
|
3995
|
-
params: import("@prisma/client/runtime/
|
3995
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
3996
3996
|
amount: string;
|
3997
3997
|
startTimestamp: bigint;
|
3998
3998
|
type: string;
|
3999
3999
|
computeChainId: number;
|
4000
4000
|
distributionChainId: number;
|
4001
4001
|
endTimestamp: bigint;
|
4002
|
-
opportunityId: string;
|
4003
|
-
creatorAddress: string;
|
4004
4002
|
distributionType: import("@package/databases").DistributionType;
|
4005
4003
|
subType: number | null;
|
4006
4004
|
rewardTokenId: string;
|
4005
|
+
opportunityId: string;
|
4006
|
+
creatorAddress: string;
|
4007
4007
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
4008
4008
|
createdAt: Date;
|
4009
4009
|
rootCampaignId: string | null;
|
@@ -4041,6 +4041,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4041
4041
|
explorerAddress: string | undefined;
|
4042
4042
|
tags: string[];
|
4043
4043
|
} | {
|
4044
|
+
Protocols: {
|
4045
|
+
name: string;
|
4046
|
+
description: string;
|
4047
|
+
id: string;
|
4048
|
+
url: string;
|
4049
|
+
icon: string;
|
4050
|
+
tags: string[];
|
4051
|
+
}[];
|
4044
4052
|
Tokens: {
|
4045
4053
|
symbol: string;
|
4046
4054
|
name: string | null;
|
@@ -4052,18 +4060,10 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4052
4060
|
icon: string;
|
4053
4061
|
isNative: boolean;
|
4054
4062
|
isPoint: boolean;
|
4055
|
-
isPreTGE: boolean;
|
4056
|
-
isTest: boolean;
|
4057
|
-
verified: boolean;
|
4058
|
-
displaySymbol: string;
|
4059
|
-
}[];
|
4060
|
-
Protocols: {
|
4061
|
-
name: string;
|
4062
|
-
description: string;
|
4063
|
-
id: string;
|
4064
|
-
url: string;
|
4065
|
-
icon: string;
|
4066
|
-
tags: string[];
|
4063
|
+
isPreTGE: boolean;
|
4064
|
+
isTest: boolean;
|
4065
|
+
verified: boolean;
|
4066
|
+
displaySymbol: string;
|
4067
4067
|
}[];
|
4068
4068
|
name: string;
|
4069
4069
|
apr: number;
|
@@ -4075,11 +4075,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4075
4075
|
action: import("@package/databases").OpportunityAction;
|
4076
4076
|
type: string;
|
4077
4077
|
depositUrl: string | null;
|
4078
|
-
explorerAddress: string | null;
|
4079
|
-
howToSteps: string[];
|
4080
|
-
mainProtocolId: string | null;
|
4081
4078
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
4082
4079
|
identifier: string;
|
4080
|
+
howToSteps: string[];
|
4081
|
+
explorerAddress: string | null;
|
4082
|
+
mainProtocolId: string | null;
|
4083
4083
|
dailyRewards: number;
|
4084
4084
|
tags: string[];
|
4085
4085
|
lastCampaignCreatedAt: Date;
|
@@ -4115,18 +4115,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4115
4115
|
campaignId: string;
|
4116
4116
|
description: string | null;
|
4117
4117
|
id: string;
|
4118
|
-
params: import("@prisma/client/runtime/
|
4118
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
4119
4119
|
amount: string;
|
4120
4120
|
startTimestamp: bigint;
|
4121
4121
|
type: string;
|
4122
4122
|
computeChainId: number;
|
4123
4123
|
distributionChainId: number;
|
4124
4124
|
endTimestamp: bigint;
|
4125
|
-
opportunityId: string;
|
4126
|
-
creatorAddress: string;
|
4127
4125
|
distributionType: import("@package/databases").DistributionType;
|
4128
4126
|
subType: number | null;
|
4129
4127
|
rewardTokenId: string;
|
4128
|
+
opportunityId: string;
|
4129
|
+
creatorAddress: string;
|
4130
4130
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
4131
4131
|
createdAt: Date;
|
4132
4132
|
rootCampaignId: string | null;
|
@@ -4164,6 +4164,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4164
4164
|
explorerAddress: string | undefined;
|
4165
4165
|
tags: string[];
|
4166
4166
|
} | {
|
4167
|
+
Protocols: {
|
4168
|
+
name: string;
|
4169
|
+
description: string;
|
4170
|
+
id: string;
|
4171
|
+
url: string;
|
4172
|
+
icon: string;
|
4173
|
+
tags: string[];
|
4174
|
+
}[];
|
4167
4175
|
Tokens: {
|
4168
4176
|
symbol: string;
|
4169
4177
|
name: string | null;
|
@@ -4180,14 +4188,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4180
4188
|
verified: boolean;
|
4181
4189
|
displaySymbol: string;
|
4182
4190
|
}[];
|
4183
|
-
Protocols: {
|
4184
|
-
name: string;
|
4185
|
-
description: string;
|
4186
|
-
id: string;
|
4187
|
-
url: string;
|
4188
|
-
icon: string;
|
4189
|
-
tags: string[];
|
4190
|
-
}[];
|
4191
4191
|
name: string;
|
4192
4192
|
apr: number;
|
4193
4193
|
tvl: number;
|
@@ -4198,11 +4198,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4198
4198
|
action: import("@package/databases").OpportunityAction;
|
4199
4199
|
type: string;
|
4200
4200
|
depositUrl: string | null;
|
4201
|
-
explorerAddress: string | null;
|
4202
|
-
howToSteps: string[];
|
4203
|
-
mainProtocolId: string | null;
|
4204
4201
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
4205
4202
|
identifier: string;
|
4203
|
+
howToSteps: string[];
|
4204
|
+
explorerAddress: string | null;
|
4205
|
+
mainProtocolId: string | null;
|
4206
4206
|
dailyRewards: number;
|
4207
4207
|
tags: string[];
|
4208
4208
|
lastCampaignCreatedAt: Date;
|
@@ -4239,18 +4239,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4239
4239
|
campaignId: string;
|
4240
4240
|
description: string | null;
|
4241
4241
|
id: string;
|
4242
|
-
params: import("@prisma/client/runtime/
|
4242
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
4243
4243
|
amount: string;
|
4244
4244
|
startTimestamp: bigint;
|
4245
4245
|
type: string;
|
4246
4246
|
computeChainId: number;
|
4247
4247
|
distributionChainId: number;
|
4248
4248
|
endTimestamp: bigint;
|
4249
|
-
opportunityId: string;
|
4250
|
-
creatorAddress: string;
|
4251
4249
|
distributionType: import("@package/databases").DistributionType;
|
4252
4250
|
subType: number | null;
|
4253
4251
|
rewardTokenId: string;
|
4252
|
+
opportunityId: string;
|
4253
|
+
creatorAddress: string;
|
4254
4254
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
4255
4255
|
createdAt: Date;
|
4256
4256
|
rootCampaignId: string | null;
|
@@ -4288,6 +4288,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4288
4288
|
explorerAddress: string | undefined;
|
4289
4289
|
tags: string[];
|
4290
4290
|
} | {
|
4291
|
+
Protocols: {
|
4292
|
+
name: string;
|
4293
|
+
description: string;
|
4294
|
+
id: string;
|
4295
|
+
url: string;
|
4296
|
+
icon: string;
|
4297
|
+
tags: string[];
|
4298
|
+
}[];
|
4291
4299
|
Tokens: {
|
4292
4300
|
symbol: string;
|
4293
4301
|
name: string | null;
|
@@ -4304,14 +4312,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4304
4312
|
verified: boolean;
|
4305
4313
|
displaySymbol: string;
|
4306
4314
|
}[];
|
4307
|
-
Protocols: {
|
4308
|
-
name: string;
|
4309
|
-
description: string;
|
4310
|
-
id: string;
|
4311
|
-
url: string;
|
4312
|
-
icon: string;
|
4313
|
-
tags: string[];
|
4314
|
-
}[];
|
4315
4315
|
name: string;
|
4316
4316
|
apr: number;
|
4317
4317
|
tvl: number;
|
@@ -4322,11 +4322,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
4322
4322
|
action: import("@package/databases").OpportunityAction;
|
4323
4323
|
type: string;
|
4324
4324
|
depositUrl: string | null;
|
4325
|
-
explorerAddress: string | null;
|
4326
|
-
howToSteps: string[];
|
4327
|
-
mainProtocolId: string | null;
|
4328
4325
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
4329
4326
|
identifier: string;
|
4327
|
+
howToSteps: string[];
|
4328
|
+
explorerAddress: string | null;
|
4329
|
+
mainProtocolId: string | null;
|
4330
4330
|
dailyRewards: number;
|
4331
4331
|
tags: string[];
|
4332
4332
|
lastCampaignCreatedAt: Date;
|
@@ -5911,7 +5911,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
5911
5911
|
200: {
|
5912
5912
|
symbol: string;
|
5913
5913
|
id: number;
|
5914
|
-
args: import("@prisma/client/runtime/
|
5914
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
5915
5915
|
method: import("@package/databases").PriceSourceMethod;
|
5916
5916
|
}[];
|
5917
5917
|
};
|
@@ -5932,7 +5932,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
5932
5932
|
200: {
|
5933
5933
|
symbol: string;
|
5934
5934
|
id: number;
|
5935
|
-
args: import("@prisma/client/runtime/
|
5935
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
5936
5936
|
method: import("@package/databases").PriceSourceMethod;
|
5937
5937
|
};
|
5938
5938
|
422: {
|
@@ -5997,7 +5997,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
5997
5997
|
200: {
|
5998
5998
|
symbol: string;
|
5999
5999
|
id: number;
|
6000
|
-
args: import("@prisma/client/runtime/
|
6000
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
6001
6001
|
method: import("@package/databases").PriceSourceMethod;
|
6002
6002
|
};
|
6003
6003
|
422: {
|
@@ -6031,7 +6031,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
6031
6031
|
200: {
|
6032
6032
|
symbol: string;
|
6033
6033
|
id: number;
|
6034
|
-
args: import("@prisma/client/runtime/
|
6034
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
6035
6035
|
method: import("@package/databases").PriceSourceMethod;
|
6036
6036
|
};
|
6037
6037
|
422: {
|
@@ -6065,7 +6065,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
6065
6065
|
chainId: number;
|
6066
6066
|
userAddress: string;
|
6067
6067
|
arrestTimestamp: bigint;
|
6068
|
-
arrestDetails: import("@prisma/client/runtime/
|
6068
|
+
arrestDetails: import("@prisma/client/runtime/client").JsonValue;
|
6069
6069
|
}[];
|
6070
6070
|
};
|
6071
6071
|
};
|
@@ -6132,7 +6132,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
6132
6132
|
chainId: number;
|
6133
6133
|
userAddress: string;
|
6134
6134
|
arrestTimestamp: bigint;
|
6135
|
-
arrestDetails: import("@prisma/client/runtime/
|
6135
|
+
arrestDetails: import("@prisma/client/runtime/client").JsonValue;
|
6136
6136
|
};
|
6137
6137
|
422: {
|
6138
6138
|
type: "validation";
|
@@ -6379,6 +6379,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
6379
6379
|
id: number;
|
6380
6380
|
icon: string;
|
6381
6381
|
};
|
6382
|
+
Protocols: {
|
6383
|
+
name: string;
|
6384
|
+
description: string;
|
6385
|
+
id: string;
|
6386
|
+
url: string;
|
6387
|
+
icon: string;
|
6388
|
+
tags: string[];
|
6389
|
+
}[];
|
6382
6390
|
Tokens: {
|
6383
6391
|
symbol: string;
|
6384
6392
|
name: string | null;
|
@@ -6395,14 +6403,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
6395
6403
|
verified: boolean;
|
6396
6404
|
displaySymbol: string;
|
6397
6405
|
}[];
|
6398
|
-
Protocols: {
|
6399
|
-
name: string;
|
6400
|
-
description: string;
|
6401
|
-
id: string;
|
6402
|
-
url: string;
|
6403
|
-
icon: string;
|
6404
|
-
tags: string[];
|
6405
|
-
}[];
|
6406
6406
|
MainProtocol: {
|
6407
6407
|
name: string;
|
6408
6408
|
description: string;
|
@@ -6422,11 +6422,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
6422
6422
|
action: import("@package/databases").OpportunityAction;
|
6423
6423
|
type: string;
|
6424
6424
|
depositUrl: string | null;
|
6425
|
-
explorerAddress: string | null;
|
6426
|
-
howToSteps: string[];
|
6427
|
-
mainProtocolId: string | null;
|
6428
6425
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
6429
6426
|
identifier: string;
|
6427
|
+
howToSteps: string[];
|
6428
|
+
explorerAddress: string | null;
|
6429
|
+
mainProtocolId: string | null;
|
6430
6430
|
dailyRewards: number;
|
6431
6431
|
tags: string[];
|
6432
6432
|
lastCampaignCreatedAt: Date;
|
@@ -7184,7 +7184,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
7184
7184
|
campaignId: string;
|
7185
7185
|
error: string;
|
7186
7186
|
status: import("@package/databases").RunStatus;
|
7187
|
-
details: import("@prisma/client/runtime/
|
7187
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
7188
7188
|
computedUntil: bigint;
|
7189
7189
|
processingStarted: bigint;
|
7190
7190
|
}[];
|
@@ -7213,14 +7213,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
7213
7213
|
campaignId: string;
|
7214
7214
|
error: string;
|
7215
7215
|
status: import("@package/databases").RunStatus;
|
7216
|
-
details: import("@prisma/client/runtime/
|
7216
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
7217
7217
|
computedUntil: bigint;
|
7218
7218
|
processingStarted: bigint;
|
7219
7219
|
}[] | {
|
7220
7220
|
campaignId: string;
|
7221
7221
|
error: string;
|
7222
7222
|
status: import("@package/databases").RunStatus;
|
7223
|
-
details: import("@prisma/client/runtime/
|
7223
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
7224
7224
|
computedUntil: bigint;
|
7225
7225
|
processingStarted: bigint;
|
7226
7226
|
};
|
@@ -7257,24 +7257,24 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
7257
7257
|
computeChainId: number;
|
7258
7258
|
distributionChainId: number;
|
7259
7259
|
endTimestamp: bigint;
|
7260
|
-
RewardToken: {
|
7261
|
-
symbol: string;
|
7262
|
-
address: string;
|
7263
|
-
isTest: boolean;
|
7264
|
-
};
|
7265
|
-
Opportunity: {
|
7266
|
-
name: string;
|
7267
|
-
type: string;
|
7268
|
-
identifier: string;
|
7269
|
-
};
|
7270
7260
|
CampaignStatus: {
|
7271
7261
|
campaignId: string;
|
7272
7262
|
error: string;
|
7273
7263
|
status: import("@package/databases").RunStatus;
|
7274
|
-
details: import("@prisma/client/runtime/
|
7264
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
7275
7265
|
computedUntil: bigint;
|
7276
7266
|
processingStarted: bigint;
|
7277
7267
|
}[];
|
7268
|
+
Opportunity: {
|
7269
|
+
name: string;
|
7270
|
+
type: string;
|
7271
|
+
identifier: string;
|
7272
|
+
};
|
7273
|
+
RewardToken: {
|
7274
|
+
symbol: string;
|
7275
|
+
address: string;
|
7276
|
+
isTest: boolean;
|
7277
|
+
};
|
7278
7278
|
}[];
|
7279
7279
|
422: {
|
7280
7280
|
type: "validation";
|
@@ -9022,11 +9022,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
9022
9022
|
action: import("@package/databases").OpportunityAction;
|
9023
9023
|
type: string;
|
9024
9024
|
depositUrl: string | null;
|
9025
|
-
explorerAddress: string | null;
|
9026
|
-
howToSteps: string[];
|
9027
|
-
mainProtocolId: string | null;
|
9028
9025
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
9029
9026
|
identifier: string;
|
9027
|
+
howToSteps: string[];
|
9028
|
+
explorerAddress: string | null;
|
9029
|
+
mainProtocolId: string | null;
|
9030
9030
|
dailyRewards: number;
|
9031
9031
|
tags: string[];
|
9032
9032
|
lastCampaignCreatedAt: Date;
|
@@ -9035,18 +9035,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
9035
9035
|
campaignId: string;
|
9036
9036
|
description: string | null;
|
9037
9037
|
id: string;
|
9038
|
-
params: import("@prisma/client/runtime/
|
9038
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
9039
9039
|
amount: string;
|
9040
9040
|
startTimestamp: bigint;
|
9041
9041
|
type: string;
|
9042
9042
|
computeChainId: number;
|
9043
9043
|
distributionChainId: number;
|
9044
9044
|
endTimestamp: bigint;
|
9045
|
-
opportunityId: string;
|
9046
|
-
creatorAddress: string;
|
9047
9045
|
distributionType: import("@package/databases").DistributionType;
|
9048
9046
|
subType: number | null;
|
9049
9047
|
rewardTokenId: string;
|
9048
|
+
opportunityId: string;
|
9049
|
+
creatorAddress: string;
|
9050
9050
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
9051
9051
|
createdAt: Date;
|
9052
9052
|
rootCampaignId: string | null;
|
@@ -9093,11 +9093,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
9093
9093
|
action: import("@package/databases").OpportunityAction;
|
9094
9094
|
type: string;
|
9095
9095
|
depositUrl: string | null;
|
9096
|
-
explorerAddress: string | null;
|
9097
|
-
howToSteps: string[];
|
9098
|
-
mainProtocolId: string | null;
|
9099
9096
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
9100
9097
|
identifier: string;
|
9098
|
+
howToSteps: string[];
|
9099
|
+
explorerAddress: string | null;
|
9100
|
+
mainProtocolId: string | null;
|
9101
9101
|
dailyRewards: number;
|
9102
9102
|
tags: string[];
|
9103
9103
|
lastCampaignCreatedAt: Date;
|
@@ -9106,18 +9106,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
9106
9106
|
campaignId: string;
|
9107
9107
|
description: string | null;
|
9108
9108
|
id: string;
|
9109
|
-
params: import("@prisma/client/runtime/
|
9109
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
9110
9110
|
amount: string;
|
9111
9111
|
startTimestamp: bigint;
|
9112
9112
|
type: string;
|
9113
9113
|
computeChainId: number;
|
9114
9114
|
distributionChainId: number;
|
9115
9115
|
endTimestamp: bigint;
|
9116
|
-
opportunityId: string;
|
9117
|
-
creatorAddress: string;
|
9118
9116
|
distributionType: import("@package/databases").DistributionType;
|
9119
9117
|
subType: number | null;
|
9120
9118
|
rewardTokenId: string;
|
9119
|
+
opportunityId: string;
|
9120
|
+
creatorAddress: string;
|
9121
9121
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
9122
9122
|
createdAt: Date;
|
9123
9123
|
rootCampaignId: string | null;
|
@@ -9956,6 +9956,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
9956
9956
|
};
|
9957
9957
|
headers: unknown;
|
9958
9958
|
response: {
|
9959
|
+
[x: string]: any;
|
9959
9960
|
200: {
|
9960
9961
|
id: string;
|
9961
9962
|
recipient: string;
|
@@ -9967,8 +9968,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
9967
9968
|
NodesSources: {
|
9968
9969
|
id: string;
|
9969
9970
|
chainId: number;
|
9970
|
-
lastFetchedBlockNumber: number;
|
9971
9971
|
source: string;
|
9972
|
+
lastFetchedBlockNumber: number;
|
9972
9973
|
topics: string[];
|
9973
9974
|
};
|
9974
9975
|
}[];
|
@@ -11362,8 +11363,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11362
11363
|
tags: string[];
|
11363
11364
|
} | null | undefined;
|
11364
11365
|
depositUrl?: string | undefined;
|
11365
|
-
explorerAddress?: string | undefined;
|
11366
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
11367
11366
|
aprRecord?: {
|
11368
11367
|
timestamp: string | bigint;
|
11369
11368
|
cumulated: number;
|
@@ -11374,6 +11373,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11374
11373
|
identifier: string;
|
11375
11374
|
}[];
|
11376
11375
|
} | undefined;
|
11376
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
11377
|
+
explorerAddress?: string | undefined;
|
11377
11378
|
tvlRecord?: {
|
11378
11379
|
timestamp: string | bigint;
|
11379
11380
|
total: number;
|
@@ -11432,11 +11433,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11432
11433
|
chainId: number;
|
11433
11434
|
action: string;
|
11434
11435
|
type: string;
|
11435
|
-
howToSteps: string[];
|
11436
|
-
identifier: string;
|
11437
|
-
dailyRewards: number;
|
11438
|
-
tags: string[];
|
11439
|
-
lastCampaignCreatedAt: number;
|
11440
11436
|
chain: {
|
11441
11437
|
explorers?: {
|
11442
11438
|
chainId: number;
|
@@ -11447,6 +11443,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11447
11443
|
id: number;
|
11448
11444
|
icon: string;
|
11449
11445
|
};
|
11446
|
+
identifier: string;
|
11447
|
+
howToSteps: string[];
|
11448
|
+
dailyRewards: number;
|
11449
|
+
tags: string[];
|
11450
|
+
lastCampaignCreatedAt: number;
|
11450
11451
|
};
|
11451
11452
|
readonly 500: {
|
11452
11453
|
info: string;
|
@@ -11491,8 +11492,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11491
11492
|
tags: string[];
|
11492
11493
|
} | null | undefined;
|
11493
11494
|
depositUrl?: string | undefined;
|
11494
|
-
explorerAddress?: string | undefined;
|
11495
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
11496
11495
|
aprRecord?: {
|
11497
11496
|
timestamp: string | bigint;
|
11498
11497
|
cumulated: number;
|
@@ -11503,6 +11502,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11503
11502
|
identifier: string;
|
11504
11503
|
}[];
|
11505
11504
|
} | undefined;
|
11505
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
11506
|
+
explorerAddress?: string | undefined;
|
11506
11507
|
tvlRecord?: {
|
11507
11508
|
timestamp: string | bigint;
|
11508
11509
|
total: number;
|
@@ -11566,9 +11567,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11566
11567
|
creatorId?: string | null | undefined;
|
11567
11568
|
address: string;
|
11568
11569
|
} | undefined;
|
11569
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
11570
|
-
rootCampaignId?: string | undefined;
|
11571
|
-
parentCampaignId?: string | undefined;
|
11572
11570
|
campaignStatus?: {
|
11573
11571
|
error?: string | undefined;
|
11574
11572
|
details?: any;
|
@@ -11576,6 +11574,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11576
11574
|
computedUntil: string | number;
|
11577
11575
|
processingStarted: string | number;
|
11578
11576
|
} | undefined;
|
11577
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
11578
|
+
rootCampaignId?: string | undefined;
|
11579
|
+
parentCampaignId?: string | undefined;
|
11579
11580
|
distributionChain?: {
|
11580
11581
|
explorers?: {
|
11581
11582
|
chainId: number;
|
@@ -11610,9 +11611,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11610
11611
|
computeChainId: number;
|
11611
11612
|
distributionChainId: number;
|
11612
11613
|
endTimestamp: string | number;
|
11613
|
-
creatorAddress: string;
|
11614
|
-
subType: number | null;
|
11615
|
-
createdAt: string;
|
11616
11614
|
chain: {
|
11617
11615
|
explorers?: {
|
11618
11616
|
chainId: number;
|
@@ -11623,14 +11621,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11623
11621
|
id: number;
|
11624
11622
|
icon: string;
|
11625
11623
|
};
|
11624
|
+
subType: number | null;
|
11625
|
+
creatorAddress: string;
|
11626
|
+
createdAt: string;
|
11626
11627
|
}[];
|
11627
11628
|
action: string;
|
11628
11629
|
type: string;
|
11629
|
-
howToSteps: string[];
|
11630
|
-
identifier: string;
|
11631
|
-
dailyRewards: number;
|
11632
|
-
tags: string[];
|
11633
|
-
lastCampaignCreatedAt: number;
|
11634
11630
|
chain: {
|
11635
11631
|
explorers?: {
|
11636
11632
|
chainId: number;
|
@@ -11641,6 +11637,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11641
11637
|
id: number;
|
11642
11638
|
icon: string;
|
11643
11639
|
};
|
11640
|
+
identifier: string;
|
11641
|
+
howToSteps: string[];
|
11642
|
+
dailyRewards: number;
|
11643
|
+
tags: string[];
|
11644
|
+
lastCampaignCreatedAt: number;
|
11644
11645
|
};
|
11645
11646
|
readonly 500: {
|
11646
11647
|
info: string;
|
@@ -11702,6 +11703,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11702
11703
|
explorerAddress: string | undefined;
|
11703
11704
|
tags: string[];
|
11704
11705
|
} | {
|
11706
|
+
Protocols: {
|
11707
|
+
name: string;
|
11708
|
+
description: string;
|
11709
|
+
id: string;
|
11710
|
+
url: string;
|
11711
|
+
icon: string;
|
11712
|
+
tags: string[];
|
11713
|
+
}[];
|
11705
11714
|
Tokens: {
|
11706
11715
|
symbol: string;
|
11707
11716
|
name: string | null;
|
@@ -11718,14 +11727,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11718
11727
|
verified: boolean;
|
11719
11728
|
displaySymbol: string;
|
11720
11729
|
}[];
|
11721
|
-
Protocols: {
|
11722
|
-
name: string;
|
11723
|
-
description: string;
|
11724
|
-
id: string;
|
11725
|
-
url: string;
|
11726
|
-
icon: string;
|
11727
|
-
tags: string[];
|
11728
|
-
}[];
|
11729
11730
|
name: string;
|
11730
11731
|
apr: number;
|
11731
11732
|
tvl: number;
|
@@ -11736,11 +11737,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11736
11737
|
action: import("@package/databases").OpportunityAction;
|
11737
11738
|
type: string;
|
11738
11739
|
depositUrl: string | null;
|
11739
|
-
explorerAddress: string | null;
|
11740
|
-
howToSteps: string[];
|
11741
|
-
mainProtocolId: string | null;
|
11742
11740
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
11743
11741
|
identifier: string;
|
11742
|
+
howToSteps: string[];
|
11743
|
+
explorerAddress: string | null;
|
11744
|
+
mainProtocolId: string | null;
|
11744
11745
|
dailyRewards: number;
|
11745
11746
|
tags: string[];
|
11746
11747
|
lastCampaignCreatedAt: Date;
|
@@ -11773,11 +11774,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11773
11774
|
action: import("@package/databases").OpportunityAction;
|
11774
11775
|
type: string;
|
11775
11776
|
depositUrl: string | null;
|
11776
|
-
explorerAddress: string | null;
|
11777
|
-
howToSteps: string[];
|
11778
|
-
mainProtocolId: string | null;
|
11779
11777
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
11780
11778
|
identifier: string;
|
11779
|
+
howToSteps: string[];
|
11780
|
+
explorerAddress: string | null;
|
11781
|
+
mainProtocolId: string | null;
|
11781
11782
|
dailyRewards: number;
|
11782
11783
|
tags: string[];
|
11783
11784
|
lastCampaignCreatedAt: Date;
|
@@ -11798,8 +11799,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11798
11799
|
description?: string | undefined;
|
11799
11800
|
action?: "POOL" | "INVALID" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "SWAP" | undefined;
|
11800
11801
|
depositUrl?: string | undefined;
|
11801
|
-
explorerAddress?: string | undefined;
|
11802
11802
|
howToSteps?: string[] | undefined;
|
11803
|
+
explorerAddress?: string | undefined;
|
11803
11804
|
mainProtocolId?: string | undefined;
|
11804
11805
|
}, options?: {
|
11805
11806
|
headers?: Record<string, unknown> | undefined;
|
@@ -11817,11 +11818,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11817
11818
|
action: import("@package/databases").OpportunityAction;
|
11818
11819
|
type: string;
|
11819
11820
|
depositUrl: string | null;
|
11820
|
-
explorerAddress: string | null;
|
11821
|
-
howToSteps: string[];
|
11822
|
-
mainProtocolId: string | null;
|
11823
11821
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
11824
11822
|
identifier: string;
|
11823
|
+
howToSteps: string[];
|
11824
|
+
explorerAddress: string | null;
|
11825
|
+
mainProtocolId: string | null;
|
11825
11826
|
dailyRewards: number;
|
11826
11827
|
tags: string[];
|
11827
11828
|
lastCampaignCreatedAt: Date;
|
@@ -11836,7 +11837,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11836
11837
|
expected?: string;
|
11837
11838
|
};
|
11838
11839
|
}>>;
|
11839
|
-
delete: (body: ("name" | "description" | "action" | "depositUrl" | "
|
11840
|
+
delete: (body: ("name" | "description" | "action" | "depositUrl" | "howToSteps" | "explorerAddress" | "mainProtocolId")[], options?: {
|
11840
11841
|
headers?: Record<string, unknown> | undefined;
|
11841
11842
|
query?: Record<string, unknown> | undefined;
|
11842
11843
|
fetch?: RequestInit | undefined;
|
@@ -11874,6 +11875,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11874
11875
|
explorerAddress: string | undefined;
|
11875
11876
|
tags: string[];
|
11876
11877
|
} | {
|
11878
|
+
Protocols: {
|
11879
|
+
name: string;
|
11880
|
+
description: string;
|
11881
|
+
id: string;
|
11882
|
+
url: string;
|
11883
|
+
icon: string;
|
11884
|
+
tags: string[];
|
11885
|
+
}[];
|
11877
11886
|
Tokens: {
|
11878
11887
|
symbol: string;
|
11879
11888
|
name: string | null;
|
@@ -11890,14 +11899,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11890
11899
|
verified: boolean;
|
11891
11900
|
displaySymbol: string;
|
11892
11901
|
}[];
|
11893
|
-
Protocols: {
|
11894
|
-
name: string;
|
11895
|
-
description: string;
|
11896
|
-
id: string;
|
11897
|
-
url: string;
|
11898
|
-
icon: string;
|
11899
|
-
tags: string[];
|
11900
|
-
}[];
|
11901
11902
|
name: string;
|
11902
11903
|
apr: number;
|
11903
11904
|
tvl: number;
|
@@ -11908,11 +11909,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11908
11909
|
action: import("@package/databases").OpportunityAction;
|
11909
11910
|
type: string;
|
11910
11911
|
depositUrl: string | null;
|
11911
|
-
explorerAddress: string | null;
|
11912
|
-
howToSteps: string[];
|
11913
|
-
mainProtocolId: string | null;
|
11914
11912
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
11915
11913
|
identifier: string;
|
11914
|
+
howToSteps: string[];
|
11915
|
+
explorerAddress: string | null;
|
11916
|
+
mainProtocolId: string | null;
|
11916
11917
|
dailyRewards: number;
|
11917
11918
|
tags: string[];
|
11918
11919
|
lastCampaignCreatedAt: Date;
|
@@ -11944,16 +11945,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11944
11945
|
tokenSymbol?: string | undefined;
|
11945
11946
|
type?: string | undefined;
|
11946
11947
|
endTimestamp?: string | undefined;
|
11948
|
+
subType?: number | undefined;
|
11947
11949
|
opportunityId?: string | undefined;
|
11948
11950
|
creatorAddress?: string | undefined;
|
11949
|
-
mainProtocolId?: string | undefined;
|
11950
|
-
subType?: number | undefined;
|
11951
11951
|
rootCampaignId?: string | undefined;
|
11952
11952
|
parentCampaignId?: string | undefined;
|
11953
|
+
mainProtocolId?: string | undefined;
|
11953
11954
|
creatorId?: string | undefined;
|
11954
|
-
mainParameter?: string | undefined;
|
11955
11955
|
test?: boolean | undefined;
|
11956
11956
|
page?: number | undefined;
|
11957
|
+
mainParameter?: string | undefined;
|
11957
11958
|
creatorTag?: string | undefined;
|
11958
11959
|
distributionChainIds?: number[] | undefined;
|
11959
11960
|
types?: string[] | undefined;
|
@@ -11976,8 +11977,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11976
11977
|
tags: string[];
|
11977
11978
|
} | null | undefined;
|
11978
11979
|
depositUrl?: string | undefined;
|
11979
|
-
explorerAddress?: string | undefined;
|
11980
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
11981
11980
|
aprRecord?: {
|
11982
11981
|
timestamp: string | bigint;
|
11983
11982
|
cumulated: number;
|
@@ -11988,6 +11987,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
11988
11987
|
identifier: string;
|
11989
11988
|
}[];
|
11990
11989
|
} | undefined;
|
11990
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
11991
|
+
explorerAddress?: string | undefined;
|
11991
11992
|
tvlRecord?: {
|
11992
11993
|
timestamp: string | bigint;
|
11993
11994
|
total: number;
|
@@ -12051,9 +12052,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12051
12052
|
creatorId?: string | null | undefined;
|
12052
12053
|
address: string;
|
12053
12054
|
} | undefined;
|
12054
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
12055
|
-
rootCampaignId?: string | undefined;
|
12056
|
-
parentCampaignId?: string | undefined;
|
12057
12055
|
campaignStatus?: {
|
12058
12056
|
error?: string | undefined;
|
12059
12057
|
details?: any;
|
@@ -12061,6 +12059,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12061
12059
|
computedUntil: string | number;
|
12062
12060
|
processingStarted: string | number;
|
12063
12061
|
} | undefined;
|
12062
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
12063
|
+
rootCampaignId?: string | undefined;
|
12064
|
+
parentCampaignId?: string | undefined;
|
12064
12065
|
distributionChain?: {
|
12065
12066
|
explorers?: {
|
12066
12067
|
chainId: number;
|
@@ -12095,9 +12096,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12095
12096
|
computeChainId: number;
|
12096
12097
|
distributionChainId: number;
|
12097
12098
|
endTimestamp: string | number;
|
12098
|
-
creatorAddress: string;
|
12099
|
-
subType: number | null;
|
12100
|
-
createdAt: string;
|
12101
12099
|
chain: {
|
12102
12100
|
explorers?: {
|
12103
12101
|
chainId: number;
|
@@ -12108,14 +12106,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12108
12106
|
id: number;
|
12109
12107
|
icon: string;
|
12110
12108
|
};
|
12109
|
+
subType: number | null;
|
12110
|
+
creatorAddress: string;
|
12111
|
+
createdAt: string;
|
12111
12112
|
}[];
|
12112
12113
|
action: string;
|
12113
12114
|
type: string;
|
12114
|
-
howToSteps: string[];
|
12115
|
-
identifier: string;
|
12116
|
-
dailyRewards: number;
|
12117
|
-
tags: string[];
|
12118
|
-
lastCampaignCreatedAt: number;
|
12119
12115
|
chain: {
|
12120
12116
|
explorers?: {
|
12121
12117
|
chainId: number;
|
@@ -12126,6 +12122,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12126
12122
|
id: number;
|
12127
12123
|
icon: string;
|
12128
12124
|
};
|
12125
|
+
identifier: string;
|
12126
|
+
howToSteps: string[];
|
12127
|
+
dailyRewards: number;
|
12128
|
+
tags: string[];
|
12129
|
+
lastCampaignCreatedAt: number;
|
12129
12130
|
}[];
|
12130
12131
|
readonly 500: {
|
12131
12132
|
info: string;
|
@@ -12164,8 +12165,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12164
12165
|
type?: string | undefined;
|
12165
12166
|
search?: string | undefined;
|
12166
12167
|
creatorAddress?: string | undefined;
|
12167
|
-
mainProtocolId?: string | undefined;
|
12168
12168
|
identifier?: string | undefined;
|
12169
|
+
mainProtocolId?: string | undefined;
|
12169
12170
|
tags?: string | undefined;
|
12170
12171
|
test?: boolean | undefined;
|
12171
12172
|
page?: number | undefined;
|
@@ -12191,8 +12192,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12191
12192
|
tags: string[];
|
12192
12193
|
} | null | undefined;
|
12193
12194
|
depositUrl?: string | undefined;
|
12194
|
-
explorerAddress?: string | undefined;
|
12195
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
12196
12195
|
aprRecord?: {
|
12197
12196
|
timestamp: string | bigint;
|
12198
12197
|
cumulated: number;
|
@@ -12203,6 +12202,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12203
12202
|
identifier: string;
|
12204
12203
|
}[];
|
12205
12204
|
} | undefined;
|
12205
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
12206
|
+
explorerAddress?: string | undefined;
|
12206
12207
|
tvlRecord?: {
|
12207
12208
|
timestamp: string | bigint;
|
12208
12209
|
total: number;
|
@@ -12261,11 +12262,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12261
12262
|
chainId: number;
|
12262
12263
|
action: string;
|
12263
12264
|
type: string;
|
12264
|
-
howToSteps: string[];
|
12265
|
-
identifier: string;
|
12266
|
-
dailyRewards: number;
|
12267
|
-
tags: string[];
|
12268
|
-
lastCampaignCreatedAt: number;
|
12269
12265
|
chain: {
|
12270
12266
|
explorers?: {
|
12271
12267
|
chainId: number;
|
@@ -12276,6 +12272,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12276
12272
|
id: number;
|
12277
12273
|
icon: string;
|
12278
12274
|
};
|
12275
|
+
identifier: string;
|
12276
|
+
howToSteps: string[];
|
12277
|
+
dailyRewards: number;
|
12278
|
+
tags: string[];
|
12279
|
+
lastCampaignCreatedAt: number;
|
12279
12280
|
} | null)[];
|
12280
12281
|
422: {
|
12281
12282
|
type: "validation";
|
@@ -12305,8 +12306,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12305
12306
|
type?: string | undefined;
|
12306
12307
|
search?: string | undefined;
|
12307
12308
|
creatorAddress?: string | undefined;
|
12308
|
-
mainProtocolId?: string | undefined;
|
12309
12309
|
identifier?: string | undefined;
|
12310
|
+
mainProtocolId?: string | undefined;
|
12310
12311
|
tags?: string | undefined;
|
12311
12312
|
test?: boolean | undefined;
|
12312
12313
|
page?: number | undefined;
|
@@ -12350,8 +12351,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12350
12351
|
type?: string | undefined;
|
12351
12352
|
search?: string | undefined;
|
12352
12353
|
creatorAddress?: string | undefined;
|
12353
|
-
mainProtocolId?: string | undefined;
|
12354
12354
|
identifier?: string | undefined;
|
12355
|
+
mainProtocolId?: string | undefined;
|
12355
12356
|
tags?: string | undefined;
|
12356
12357
|
test?: boolean | undefined;
|
12357
12358
|
page?: number | undefined;
|
@@ -12403,8 +12404,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12403
12404
|
type?: string | undefined;
|
12404
12405
|
search?: string | undefined;
|
12405
12406
|
creatorAddress?: string | undefined;
|
12406
|
-
mainProtocolId?: string | undefined;
|
12407
12407
|
identifier?: string | undefined;
|
12408
|
+
mainProtocolId?: string | undefined;
|
12408
12409
|
tags?: string | undefined;
|
12409
12410
|
test?: boolean | undefined;
|
12410
12411
|
page?: number | undefined;
|
@@ -12459,8 +12460,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12459
12460
|
type?: string | undefined;
|
12460
12461
|
search?: string | undefined;
|
12461
12462
|
creatorAddress?: string | undefined;
|
12462
|
-
mainProtocolId?: string | undefined;
|
12463
12463
|
identifier?: string | undefined;
|
12464
|
+
mainProtocolId?: string | undefined;
|
12464
12465
|
tags?: string | undefined;
|
12465
12466
|
test?: boolean | undefined;
|
12466
12467
|
page?: number | undefined;
|
@@ -12507,8 +12508,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12507
12508
|
type?: string | undefined;
|
12508
12509
|
search?: string | undefined;
|
12509
12510
|
creatorAddress?: string | undefined;
|
12510
|
-
mainProtocolId?: string | undefined;
|
12511
12511
|
identifier?: string | undefined;
|
12512
|
+
mainProtocolId?: string | undefined;
|
12512
12513
|
tags?: string | undefined;
|
12513
12514
|
test?: boolean | undefined;
|
12514
12515
|
page?: number | undefined;
|
@@ -12555,8 +12556,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12555
12556
|
type?: string | undefined;
|
12556
12557
|
search?: string | undefined;
|
12557
12558
|
creatorAddress?: string | undefined;
|
12558
|
-
mainProtocolId?: string | undefined;
|
12559
12559
|
identifier?: string | undefined;
|
12560
|
+
mainProtocolId?: string | undefined;
|
12560
12561
|
tags?: string | undefined;
|
12561
12562
|
test?: boolean | undefined;
|
12562
12563
|
page?: number | undefined;
|
@@ -12600,9 +12601,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12600
12601
|
creatorId?: string | null | undefined;
|
12601
12602
|
address: string;
|
12602
12603
|
} | undefined;
|
12603
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
12604
|
-
rootCampaignId?: string | undefined;
|
12605
|
-
parentCampaignId?: string | undefined;
|
12606
12604
|
campaignStatus?: {
|
12607
12605
|
error?: string | undefined;
|
12608
12606
|
details?: any;
|
@@ -12610,6 +12608,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12610
12608
|
computedUntil: string | number;
|
12611
12609
|
processingStarted: string | number;
|
12612
12610
|
} | undefined;
|
12611
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
12612
|
+
rootCampaignId?: string | undefined;
|
12613
|
+
parentCampaignId?: string | undefined;
|
12613
12614
|
distributionChain?: {
|
12614
12615
|
explorers?: {
|
12615
12616
|
chainId: number;
|
@@ -12644,9 +12645,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12644
12645
|
computeChainId: number;
|
12645
12646
|
distributionChainId: number;
|
12646
12647
|
endTimestamp: string | number;
|
12647
|
-
creatorAddress: string;
|
12648
|
-
subType: number | null;
|
12649
|
-
createdAt: string;
|
12650
12648
|
chain: {
|
12651
12649
|
explorers?: {
|
12652
12650
|
chainId: number;
|
@@ -12657,6 +12655,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12657
12655
|
id: number;
|
12658
12656
|
icon: string;
|
12659
12657
|
};
|
12658
|
+
subType: number | null;
|
12659
|
+
creatorAddress: string;
|
12660
|
+
createdAt: string;
|
12660
12661
|
};
|
12661
12662
|
422: {
|
12662
12663
|
type: "validation";
|
@@ -12734,18 +12735,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12734
12735
|
campaignId: string;
|
12735
12736
|
description: string | null;
|
12736
12737
|
id: string;
|
12737
|
-
params: import("@prisma/client/runtime/
|
12738
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
12738
12739
|
amount: string;
|
12739
12740
|
startTimestamp: bigint;
|
12740
12741
|
type: string;
|
12741
12742
|
computeChainId: number;
|
12742
12743
|
distributionChainId: number;
|
12743
12744
|
endTimestamp: bigint;
|
12744
|
-
opportunityId: string;
|
12745
|
-
creatorAddress: string;
|
12746
12745
|
distributionType: import("@package/databases").DistributionType;
|
12747
12746
|
subType: number | null;
|
12748
12747
|
rewardTokenId: string;
|
12748
|
+
opportunityId: string;
|
12749
|
+
creatorAddress: string;
|
12749
12750
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
12750
12751
|
createdAt: Date;
|
12751
12752
|
rootCampaignId: string | null;
|
@@ -12783,6 +12784,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12783
12784
|
explorerAddress: string | undefined;
|
12784
12785
|
tags: string[];
|
12785
12786
|
} | {
|
12787
|
+
Protocols: {
|
12788
|
+
name: string;
|
12789
|
+
description: string;
|
12790
|
+
id: string;
|
12791
|
+
url: string;
|
12792
|
+
icon: string;
|
12793
|
+
tags: string[];
|
12794
|
+
}[];
|
12786
12795
|
Tokens: {
|
12787
12796
|
symbol: string;
|
12788
12797
|
name: string | null;
|
@@ -12799,14 +12808,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12799
12808
|
verified: boolean;
|
12800
12809
|
displaySymbol: string;
|
12801
12810
|
}[];
|
12802
|
-
Protocols: {
|
12803
|
-
name: string;
|
12804
|
-
description: string;
|
12805
|
-
id: string;
|
12806
|
-
url: string;
|
12807
|
-
icon: string;
|
12808
|
-
tags: string[];
|
12809
|
-
}[];
|
12810
12811
|
name: string;
|
12811
12812
|
apr: number;
|
12812
12813
|
tvl: number;
|
@@ -12817,11 +12818,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12817
12818
|
action: import("@package/databases").OpportunityAction;
|
12818
12819
|
type: string;
|
12819
12820
|
depositUrl: string | null;
|
12820
|
-
explorerAddress: string | null;
|
12821
|
-
howToSteps: string[];
|
12822
|
-
mainProtocolId: string | null;
|
12823
12821
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
12824
12822
|
identifier: string;
|
12823
|
+
howToSteps: string[];
|
12824
|
+
explorerAddress: string | null;
|
12825
|
+
mainProtocolId: string | null;
|
12825
12826
|
dailyRewards: number;
|
12826
12827
|
tags: string[];
|
12827
12828
|
lastCampaignCreatedAt: Date;
|
@@ -12966,16 +12967,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12966
12967
|
tokenSymbol?: string | undefined;
|
12967
12968
|
type?: string | undefined;
|
12968
12969
|
endTimestamp?: string | undefined;
|
12970
|
+
subType?: number | undefined;
|
12969
12971
|
opportunityId?: string | undefined;
|
12970
12972
|
creatorAddress?: string | undefined;
|
12971
|
-
mainProtocolId?: string | undefined;
|
12972
|
-
subType?: number | undefined;
|
12973
12973
|
rootCampaignId?: string | undefined;
|
12974
12974
|
parentCampaignId?: string | undefined;
|
12975
|
+
mainProtocolId?: string | undefined;
|
12975
12976
|
creatorId?: string | undefined;
|
12976
|
-
mainParameter?: string | undefined;
|
12977
12977
|
test?: boolean | undefined;
|
12978
12978
|
page?: number | undefined;
|
12979
|
+
mainParameter?: string | undefined;
|
12979
12980
|
creatorTag?: string | undefined;
|
12980
12981
|
distributionChainIds?: number[] | undefined;
|
12981
12982
|
types?: string[] | undefined;
|
@@ -12992,9 +12993,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
12992
12993
|
creatorId?: string | null | undefined;
|
12993
12994
|
address: string;
|
12994
12995
|
} | undefined;
|
12995
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
12996
|
-
rootCampaignId?: string | undefined;
|
12997
|
-
parentCampaignId?: string | undefined;
|
12998
12996
|
campaignStatus?: {
|
12999
12997
|
error?: string | undefined;
|
13000
12998
|
details?: any;
|
@@ -13002,6 +13000,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13002
13000
|
computedUntil: string | number;
|
13003
13001
|
processingStarted: string | number;
|
13004
13002
|
} | undefined;
|
13003
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
13004
|
+
rootCampaignId?: string | undefined;
|
13005
|
+
parentCampaignId?: string | undefined;
|
13005
13006
|
distributionChain?: {
|
13006
13007
|
explorers?: {
|
13007
13008
|
chainId: number;
|
@@ -13036,9 +13037,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13036
13037
|
computeChainId: number;
|
13037
13038
|
distributionChainId: number;
|
13038
13039
|
endTimestamp: string | number;
|
13039
|
-
creatorAddress: string;
|
13040
|
-
subType: number | null;
|
13041
|
-
createdAt: string;
|
13042
13040
|
chain: {
|
13043
13041
|
explorers?: {
|
13044
13042
|
chainId: number;
|
@@ -13049,6 +13047,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13049
13047
|
id: number;
|
13050
13048
|
icon: string;
|
13051
13049
|
};
|
13050
|
+
subType: number | null;
|
13051
|
+
creatorAddress: string;
|
13052
|
+
createdAt: string;
|
13052
13053
|
}[];
|
13053
13054
|
422: {
|
13054
13055
|
type: "validation";
|
@@ -13075,16 +13076,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13075
13076
|
tokenSymbol?: string | undefined;
|
13076
13077
|
type?: string | undefined;
|
13077
13078
|
endTimestamp?: string | undefined;
|
13079
|
+
subType?: number | undefined;
|
13078
13080
|
opportunityId?: string | undefined;
|
13079
13081
|
creatorAddress?: string | undefined;
|
13080
|
-
mainProtocolId?: string | undefined;
|
13081
|
-
subType?: number | undefined;
|
13082
13082
|
rootCampaignId?: string | undefined;
|
13083
13083
|
parentCampaignId?: string | undefined;
|
13084
|
+
mainProtocolId?: string | undefined;
|
13084
13085
|
creatorId?: string | undefined;
|
13085
|
-
mainParameter?: string | undefined;
|
13086
13086
|
test?: boolean | undefined;
|
13087
13087
|
page?: number | undefined;
|
13088
|
+
mainParameter?: string | undefined;
|
13088
13089
|
creatorTag?: string | undefined;
|
13089
13090
|
distributionChainIds?: number[] | undefined;
|
13090
13091
|
types?: string[] | undefined;
|
@@ -13122,16 +13123,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13122
13123
|
tokenSymbol?: string | undefined;
|
13123
13124
|
type?: string | undefined;
|
13124
13125
|
endTimestamp?: string | undefined;
|
13126
|
+
subType?: number | undefined;
|
13125
13127
|
opportunityId?: string | undefined;
|
13126
13128
|
creatorAddress?: string | undefined;
|
13127
|
-
mainProtocolId?: string | undefined;
|
13128
|
-
subType?: number | undefined;
|
13129
13129
|
rootCampaignId?: string | undefined;
|
13130
13130
|
parentCampaignId?: string | undefined;
|
13131
|
+
mainProtocolId?: string | undefined;
|
13131
13132
|
creatorId?: string | undefined;
|
13132
|
-
mainParameter?: string | undefined;
|
13133
13133
|
test?: boolean | undefined;
|
13134
13134
|
page?: number | undefined;
|
13135
|
+
mainParameter?: string | undefined;
|
13135
13136
|
creatorTag?: string | undefined;
|
13136
13137
|
distributionChainIds?: number[] | undefined;
|
13137
13138
|
types?: string[] | undefined;
|
@@ -13172,16 +13173,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13172
13173
|
tokenSymbol?: string | undefined;
|
13173
13174
|
type?: string | undefined;
|
13174
13175
|
endTimestamp?: string | undefined;
|
13176
|
+
subType?: number | undefined;
|
13175
13177
|
opportunityId?: string | undefined;
|
13176
13178
|
creatorAddress?: string | undefined;
|
13177
|
-
mainProtocolId?: string | undefined;
|
13178
|
-
subType?: number | undefined;
|
13179
13179
|
rootCampaignId?: string | undefined;
|
13180
13180
|
parentCampaignId?: string | undefined;
|
13181
|
+
mainProtocolId?: string | undefined;
|
13181
13182
|
creatorId?: string | undefined;
|
13182
|
-
mainParameter?: string | undefined;
|
13183
13183
|
test?: boolean | undefined;
|
13184
13184
|
page?: number | undefined;
|
13185
|
+
mainParameter?: string | undefined;
|
13185
13186
|
creatorTag?: string | undefined;
|
13186
13187
|
distributionChainIds?: number[] | undefined;
|
13187
13188
|
types?: string[] | undefined;
|
@@ -13393,8 +13394,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13393
13394
|
campaignId?: string | undefined;
|
13394
13395
|
id?: string | undefined;
|
13395
13396
|
amount?: string | undefined;
|
13396
|
-
creatorAddress?: string | undefined;
|
13397
13397
|
subType?: number | undefined;
|
13398
|
+
creatorAddress?: string | undefined;
|
13398
13399
|
rewardToken: string;
|
13399
13400
|
params: any;
|
13400
13401
|
startTimestamp: number;
|
@@ -13426,8 +13427,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13426
13427
|
campaignId?: string | undefined;
|
13427
13428
|
id?: string | undefined;
|
13428
13429
|
amount?: string | undefined;
|
13429
|
-
creatorAddress?: string | undefined;
|
13430
13430
|
subType?: number | undefined;
|
13431
|
+
creatorAddress?: string | undefined;
|
13431
13432
|
rewardToken: string;
|
13432
13433
|
params: any;
|
13433
13434
|
startTimestamp: number;
|
@@ -13446,18 +13447,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13446
13447
|
campaignId: string;
|
13447
13448
|
description: string | null;
|
13448
13449
|
id: string;
|
13449
|
-
params: import("@prisma/client/runtime/
|
13450
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
13450
13451
|
amount: string;
|
13451
13452
|
startTimestamp: bigint;
|
13452
13453
|
type: string;
|
13453
13454
|
computeChainId: number;
|
13454
13455
|
distributionChainId: number;
|
13455
13456
|
endTimestamp: bigint;
|
13456
|
-
opportunityId: string;
|
13457
|
-
creatorAddress: string;
|
13458
13457
|
distributionType: import("@package/databases").DistributionType;
|
13459
13458
|
subType: number | null;
|
13460
13459
|
rewardTokenId: string;
|
13460
|
+
opportunityId: string;
|
13461
|
+
creatorAddress: string;
|
13461
13462
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
13462
13463
|
createdAt: Date;
|
13463
13464
|
rootCampaignId: string | null;
|
@@ -13495,6 +13496,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13495
13496
|
explorerAddress: string | undefined;
|
13496
13497
|
tags: string[];
|
13497
13498
|
} | {
|
13499
|
+
Protocols: {
|
13500
|
+
name: string;
|
13501
|
+
description: string;
|
13502
|
+
id: string;
|
13503
|
+
url: string;
|
13504
|
+
icon: string;
|
13505
|
+
tags: string[];
|
13506
|
+
}[];
|
13498
13507
|
Tokens: {
|
13499
13508
|
symbol: string;
|
13500
13509
|
name: string | null;
|
@@ -13511,14 +13520,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13511
13520
|
verified: boolean;
|
13512
13521
|
displaySymbol: string;
|
13513
13522
|
}[];
|
13514
|
-
Protocols: {
|
13515
|
-
name: string;
|
13516
|
-
description: string;
|
13517
|
-
id: string;
|
13518
|
-
url: string;
|
13519
|
-
icon: string;
|
13520
|
-
tags: string[];
|
13521
|
-
}[];
|
13522
13523
|
name: string;
|
13523
13524
|
apr: number;
|
13524
13525
|
tvl: number;
|
@@ -13529,11 +13530,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13529
13530
|
action: import("@package/databases").OpportunityAction;
|
13530
13531
|
type: string;
|
13531
13532
|
depositUrl: string | null;
|
13532
|
-
explorerAddress: string | null;
|
13533
|
-
howToSteps: string[];
|
13534
|
-
mainProtocolId: string | null;
|
13535
13533
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
13536
13534
|
identifier: string;
|
13535
|
+
howToSteps: string[];
|
13536
|
+
explorerAddress: string | null;
|
13537
|
+
mainProtocolId: string | null;
|
13537
13538
|
dailyRewards: number;
|
13538
13539
|
tags: string[];
|
13539
13540
|
lastCampaignCreatedAt: Date;
|
@@ -13562,18 +13563,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13562
13563
|
campaignId: string;
|
13563
13564
|
description: string | null;
|
13564
13565
|
id: string;
|
13565
|
-
params: import("@prisma/client/runtime/
|
13566
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
13566
13567
|
amount: string;
|
13567
13568
|
startTimestamp: bigint;
|
13568
13569
|
type: string;
|
13569
13570
|
computeChainId: number;
|
13570
13571
|
distributionChainId: number;
|
13571
13572
|
endTimestamp: bigint;
|
13572
|
-
opportunityId: string;
|
13573
|
-
creatorAddress: string;
|
13574
13573
|
distributionType: import("@package/databases").DistributionType;
|
13575
13574
|
subType: number | null;
|
13576
13575
|
rewardTokenId: string;
|
13576
|
+
opportunityId: string;
|
13577
|
+
creatorAddress: string;
|
13577
13578
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
13578
13579
|
createdAt: Date;
|
13579
13580
|
rootCampaignId: string | null;
|
@@ -13611,6 +13612,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13611
13612
|
explorerAddress: string | undefined;
|
13612
13613
|
tags: string[];
|
13613
13614
|
} | {
|
13615
|
+
Protocols: {
|
13616
|
+
name: string;
|
13617
|
+
description: string;
|
13618
|
+
id: string;
|
13619
|
+
url: string;
|
13620
|
+
icon: string;
|
13621
|
+
tags: string[];
|
13622
|
+
}[];
|
13614
13623
|
Tokens: {
|
13615
13624
|
symbol: string;
|
13616
13625
|
name: string | null;
|
@@ -13627,14 +13636,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13627
13636
|
verified: boolean;
|
13628
13637
|
displaySymbol: string;
|
13629
13638
|
}[];
|
13630
|
-
Protocols: {
|
13631
|
-
name: string;
|
13632
|
-
description: string;
|
13633
|
-
id: string;
|
13634
|
-
url: string;
|
13635
|
-
icon: string;
|
13636
|
-
tags: string[];
|
13637
|
-
}[];
|
13638
13639
|
name: string;
|
13639
13640
|
apr: number;
|
13640
13641
|
tvl: number;
|
@@ -13645,11 +13646,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13645
13646
|
action: import("@package/databases").OpportunityAction;
|
13646
13647
|
type: string;
|
13647
13648
|
depositUrl: string | null;
|
13648
|
-
explorerAddress: string | null;
|
13649
|
-
howToSteps: string[];
|
13650
|
-
mainProtocolId: string | null;
|
13651
13649
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
13652
13650
|
identifier: string;
|
13651
|
+
howToSteps: string[];
|
13652
|
+
explorerAddress: string | null;
|
13653
|
+
mainProtocolId: string | null;
|
13653
13654
|
dailyRewards: number;
|
13654
13655
|
tags: string[];
|
13655
13656
|
lastCampaignCreatedAt: Date;
|
@@ -13679,18 +13680,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13679
13680
|
campaignId: string;
|
13680
13681
|
description: string | null;
|
13681
13682
|
id: string;
|
13682
|
-
params: import("@prisma/client/runtime/
|
13683
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
13683
13684
|
amount: string;
|
13684
13685
|
startTimestamp: bigint;
|
13685
13686
|
type: string;
|
13686
13687
|
computeChainId: number;
|
13687
13688
|
distributionChainId: number;
|
13688
13689
|
endTimestamp: bigint;
|
13689
|
-
opportunityId: string;
|
13690
|
-
creatorAddress: string;
|
13691
13690
|
distributionType: import("@package/databases").DistributionType;
|
13692
13691
|
subType: number | null;
|
13693
13692
|
rewardTokenId: string;
|
13693
|
+
opportunityId: string;
|
13694
|
+
creatorAddress: string;
|
13694
13695
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
13695
13696
|
createdAt: Date;
|
13696
13697
|
rootCampaignId: string | null;
|
@@ -13728,6 +13729,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13728
13729
|
explorerAddress: string | undefined;
|
13729
13730
|
tags: string[];
|
13730
13731
|
} | {
|
13732
|
+
Protocols: {
|
13733
|
+
name: string;
|
13734
|
+
description: string;
|
13735
|
+
id: string;
|
13736
|
+
url: string;
|
13737
|
+
icon: string;
|
13738
|
+
tags: string[];
|
13739
|
+
}[];
|
13731
13740
|
Tokens: {
|
13732
13741
|
symbol: string;
|
13733
13742
|
name: string | null;
|
@@ -13744,14 +13753,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13744
13753
|
verified: boolean;
|
13745
13754
|
displaySymbol: string;
|
13746
13755
|
}[];
|
13747
|
-
Protocols: {
|
13748
|
-
name: string;
|
13749
|
-
description: string;
|
13750
|
-
id: string;
|
13751
|
-
url: string;
|
13752
|
-
icon: string;
|
13753
|
-
tags: string[];
|
13754
|
-
}[];
|
13755
13756
|
name: string;
|
13756
13757
|
apr: number;
|
13757
13758
|
tvl: number;
|
@@ -13762,11 +13763,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13762
13763
|
action: import("@package/databases").OpportunityAction;
|
13763
13764
|
type: string;
|
13764
13765
|
depositUrl: string | null;
|
13765
|
-
explorerAddress: string | null;
|
13766
|
-
howToSteps: string[];
|
13767
|
-
mainProtocolId: string | null;
|
13768
13766
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
13769
13767
|
identifier: string;
|
13768
|
+
howToSteps: string[];
|
13769
|
+
explorerAddress: string | null;
|
13770
|
+
mainProtocolId: string | null;
|
13770
13771
|
dailyRewards: number;
|
13771
13772
|
tags: string[];
|
13772
13773
|
lastCampaignCreatedAt: Date;
|
@@ -13803,16 +13804,16 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
13803
13804
|
tokenSymbol?: string | undefined;
|
13804
13805
|
type?: string | undefined;
|
13805
13806
|
endTimestamp?: string | undefined;
|
13807
|
+
subType?: number | undefined;
|
13806
13808
|
opportunityId?: string | undefined;
|
13807
13809
|
creatorAddress?: string | undefined;
|
13808
|
-
mainProtocolId?: string | undefined;
|
13809
|
-
subType?: number | undefined;
|
13810
13810
|
rootCampaignId?: string | undefined;
|
13811
13811
|
parentCampaignId?: string | undefined;
|
13812
|
+
mainProtocolId?: string | undefined;
|
13812
13813
|
creatorId?: string | undefined;
|
13813
|
-
mainParameter?: string | undefined;
|
13814
13814
|
test?: boolean | undefined;
|
13815
13815
|
page?: number | undefined;
|
13816
|
+
mainParameter?: string | undefined;
|
13816
13817
|
creatorTag?: string | undefined;
|
13817
13818
|
distributionChainIds?: number[] | undefined;
|
13818
13819
|
types?: string[] | undefined;
|
@@ -15173,7 +15174,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
15173
15174
|
200: {
|
15174
15175
|
symbol: string;
|
15175
15176
|
id: number;
|
15176
|
-
args: import("@prisma/client/runtime/
|
15177
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
15177
15178
|
method: import("@package/databases").PriceSourceMethod;
|
15178
15179
|
}[];
|
15179
15180
|
}>>;
|
@@ -15188,7 +15189,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
15188
15189
|
200: {
|
15189
15190
|
symbol: string;
|
15190
15191
|
id: number;
|
15191
|
-
args: import("@prisma/client/runtime/
|
15192
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
15192
15193
|
method: import("@package/databases").PriceSourceMethod;
|
15193
15194
|
};
|
15194
15195
|
422: {
|
@@ -15215,7 +15216,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
15215
15216
|
200: {
|
15216
15217
|
symbol: string;
|
15217
15218
|
id: number;
|
15218
|
-
args: import("@prisma/client/runtime/
|
15219
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
15219
15220
|
method: import("@package/databases").PriceSourceMethod;
|
15220
15221
|
};
|
15221
15222
|
422: {
|
@@ -15238,7 +15239,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
15238
15239
|
200: {
|
15239
15240
|
symbol: string;
|
15240
15241
|
id: number;
|
15241
|
-
args: import("@prisma/client/runtime/
|
15242
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
15242
15243
|
method: import("@package/databases").PriceSourceMethod;
|
15243
15244
|
};
|
15244
15245
|
422: {
|
@@ -15288,7 +15289,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
15288
15289
|
chainId: number;
|
15289
15290
|
userAddress: string;
|
15290
15291
|
arrestTimestamp: bigint;
|
15291
|
-
arrestDetails: import("@prisma/client/runtime/
|
15292
|
+
arrestDetails: import("@prisma/client/runtime/client").JsonValue;
|
15292
15293
|
}[];
|
15293
15294
|
}>>;
|
15294
15295
|
mapping: {
|
@@ -15338,7 +15339,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
15338
15339
|
chainId: number;
|
15339
15340
|
userAddress: string;
|
15340
15341
|
arrestTimestamp: bigint;
|
15341
|
-
arrestDetails: import("@prisma/client/runtime/
|
15342
|
+
arrestDetails: import("@prisma/client/runtime/client").JsonValue;
|
15342
15343
|
};
|
15343
15344
|
422: {
|
15344
15345
|
type: "validation";
|
@@ -15473,6 +15474,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
15473
15474
|
id: number;
|
15474
15475
|
icon: string;
|
15475
15476
|
};
|
15477
|
+
Protocols: {
|
15478
|
+
name: string;
|
15479
|
+
description: string;
|
15480
|
+
id: string;
|
15481
|
+
url: string;
|
15482
|
+
icon: string;
|
15483
|
+
tags: string[];
|
15484
|
+
}[];
|
15476
15485
|
Tokens: {
|
15477
15486
|
symbol: string;
|
15478
15487
|
name: string | null;
|
@@ -15489,14 +15498,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
15489
15498
|
verified: boolean;
|
15490
15499
|
displaySymbol: string;
|
15491
15500
|
}[];
|
15492
|
-
Protocols: {
|
15493
|
-
name: string;
|
15494
|
-
description: string;
|
15495
|
-
id: string;
|
15496
|
-
url: string;
|
15497
|
-
icon: string;
|
15498
|
-
tags: string[];
|
15499
|
-
}[];
|
15500
15501
|
MainProtocol: {
|
15501
15502
|
name: string;
|
15502
15503
|
description: string;
|
@@ -15516,11 +15517,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
15516
15517
|
action: import("@package/databases").OpportunityAction;
|
15517
15518
|
type: string;
|
15518
15519
|
depositUrl: string | null;
|
15519
|
-
explorerAddress: string | null;
|
15520
|
-
howToSteps: string[];
|
15521
|
-
mainProtocolId: string | null;
|
15522
15520
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
15523
15521
|
identifier: string;
|
15522
|
+
howToSteps: string[];
|
15523
|
+
explorerAddress: string | null;
|
15524
|
+
mainProtocolId: string | null;
|
15524
15525
|
dailyRewards: number;
|
15525
15526
|
tags: string[];
|
15526
15527
|
lastCampaignCreatedAt: Date;
|
@@ -16099,14 +16100,14 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
16099
16100
|
campaignId: string;
|
16100
16101
|
error: string;
|
16101
16102
|
status: import("@package/databases").RunStatus;
|
16102
|
-
details: import("@prisma/client/runtime/
|
16103
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
16103
16104
|
computedUntil: bigint;
|
16104
16105
|
processingStarted: bigint;
|
16105
16106
|
}[] | {
|
16106
16107
|
campaignId: string;
|
16107
16108
|
error: string;
|
16108
16109
|
status: import("@package/databases").RunStatus;
|
16109
|
-
details: import("@prisma/client/runtime/
|
16110
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
16110
16111
|
computedUntil: bigint;
|
16111
16112
|
processingStarted: bigint;
|
16112
16113
|
};
|
@@ -16240,7 +16241,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
16240
16241
|
campaignId: string;
|
16241
16242
|
error: string;
|
16242
16243
|
status: import("@package/databases").RunStatus;
|
16243
|
-
details: import("@prisma/client/runtime/
|
16244
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
16244
16245
|
computedUntil: bigint;
|
16245
16246
|
processingStarted: bigint;
|
16246
16247
|
}[];
|
@@ -16273,24 +16274,24 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
16273
16274
|
computeChainId: number;
|
16274
16275
|
distributionChainId: number;
|
16275
16276
|
endTimestamp: bigint;
|
16276
|
-
RewardToken: {
|
16277
|
-
symbol: string;
|
16278
|
-
address: string;
|
16279
|
-
isTest: boolean;
|
16280
|
-
};
|
16281
|
-
Opportunity: {
|
16282
|
-
name: string;
|
16283
|
-
type: string;
|
16284
|
-
identifier: string;
|
16285
|
-
};
|
16286
16277
|
CampaignStatus: {
|
16287
16278
|
campaignId: string;
|
16288
16279
|
error: string;
|
16289
16280
|
status: import("@package/databases").RunStatus;
|
16290
|
-
details: import("@prisma/client/runtime/
|
16281
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
16291
16282
|
computedUntil: bigint;
|
16292
16283
|
processingStarted: bigint;
|
16293
16284
|
}[];
|
16285
|
+
Opportunity: {
|
16286
|
+
name: string;
|
16287
|
+
type: string;
|
16288
|
+
identifier: string;
|
16289
|
+
};
|
16290
|
+
RewardToken: {
|
16291
|
+
symbol: string;
|
16292
|
+
address: string;
|
16293
|
+
isTest: boolean;
|
16294
|
+
};
|
16294
16295
|
}[];
|
16295
16296
|
422: {
|
16296
16297
|
type: "validation";
|
@@ -17797,11 +17798,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
17797
17798
|
action: import("@package/databases").OpportunityAction;
|
17798
17799
|
type: string;
|
17799
17800
|
depositUrl: string | null;
|
17800
|
-
explorerAddress: string | null;
|
17801
|
-
howToSteps: string[];
|
17802
|
-
mainProtocolId: string | null;
|
17803
17801
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
17804
17802
|
identifier: string;
|
17803
|
+
howToSteps: string[];
|
17804
|
+
explorerAddress: string | null;
|
17805
|
+
mainProtocolId: string | null;
|
17805
17806
|
dailyRewards: number;
|
17806
17807
|
tags: string[];
|
17807
17808
|
lastCampaignCreatedAt: Date;
|
@@ -17810,18 +17811,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
17810
17811
|
campaignId: string;
|
17811
17812
|
description: string | null;
|
17812
17813
|
id: string;
|
17813
|
-
params: import("@prisma/client/runtime/
|
17814
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
17814
17815
|
amount: string;
|
17815
17816
|
startTimestamp: bigint;
|
17816
17817
|
type: string;
|
17817
17818
|
computeChainId: number;
|
17818
17819
|
distributionChainId: number;
|
17819
17820
|
endTimestamp: bigint;
|
17820
|
-
opportunityId: string;
|
17821
|
-
creatorAddress: string;
|
17822
17821
|
distributionType: import("@package/databases").DistributionType;
|
17823
17822
|
subType: number | null;
|
17824
17823
|
rewardTokenId: string;
|
17824
|
+
opportunityId: string;
|
17825
|
+
creatorAddress: string;
|
17825
17826
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
17826
17827
|
createdAt: Date;
|
17827
17828
|
rootCampaignId: string | null;
|
@@ -17946,11 +17947,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
17946
17947
|
action: import("@package/databases").OpportunityAction;
|
17947
17948
|
type: string;
|
17948
17949
|
depositUrl: string | null;
|
17949
|
-
explorerAddress: string | null;
|
17950
|
-
howToSteps: string[];
|
17951
|
-
mainProtocolId: string | null;
|
17952
17950
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
17953
17951
|
identifier: string;
|
17952
|
+
howToSteps: string[];
|
17953
|
+
explorerAddress: string | null;
|
17954
|
+
mainProtocolId: string | null;
|
17954
17955
|
dailyRewards: number;
|
17955
17956
|
tags: string[];
|
17956
17957
|
lastCampaignCreatedAt: Date;
|
@@ -17959,18 +17960,18 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
17959
17960
|
campaignId: string;
|
17960
17961
|
description: string | null;
|
17961
17962
|
id: string;
|
17962
|
-
params: import("@prisma/client/runtime/
|
17963
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
17963
17964
|
amount: string;
|
17964
17965
|
startTimestamp: bigint;
|
17965
17966
|
type: string;
|
17966
17967
|
computeChainId: number;
|
17967
17968
|
distributionChainId: number;
|
17968
17969
|
endTimestamp: bigint;
|
17969
|
-
opportunityId: string;
|
17970
|
-
creatorAddress: string;
|
17971
17970
|
distributionType: import("@package/databases").DistributionType;
|
17972
17971
|
subType: number | null;
|
17973
17972
|
rewardTokenId: string;
|
17973
|
+
opportunityId: string;
|
17974
|
+
creatorAddress: string;
|
17974
17975
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
17975
17976
|
createdAt: Date;
|
17976
17977
|
rootCampaignId: string | null;
|
@@ -18704,6 +18705,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
18704
18705
|
};
|
18705
18706
|
fetch?: RequestInit | undefined;
|
18706
18707
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
18708
|
+
[x: string]: any;
|
18707
18709
|
200: {
|
18708
18710
|
id: string;
|
18709
18711
|
recipient: string;
|
@@ -18715,8 +18717,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
18715
18717
|
NodesSources: {
|
18716
18718
|
id: string;
|
18717
18719
|
chainId: number;
|
18718
|
-
lastFetchedBlockNumber: number;
|
18719
18720
|
source: string;
|
18721
|
+
lastFetchedBlockNumber: number;
|
18720
18722
|
topics: string[];
|
18721
18723
|
};
|
18722
18724
|
}[];
|