@merkl/api 1.0.67 → 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/index.d.ts
CHANGED
@@ -1603,16 +1603,16 @@ declare const app: Elysia<"", {
|
|
1603
1603
|
tokenSymbol?: string | undefined;
|
1604
1604
|
type?: string | undefined;
|
1605
1605
|
endTimestamp?: string | undefined;
|
1606
|
+
subType?: number | undefined;
|
1606
1607
|
opportunityId?: string | undefined;
|
1607
1608
|
creatorAddress?: string | undefined;
|
1608
|
-
mainProtocolId?: string | undefined;
|
1609
|
-
subType?: number | undefined;
|
1610
1609
|
rootCampaignId?: string | undefined;
|
1611
1610
|
parentCampaignId?: string | undefined;
|
1611
|
+
mainProtocolId?: string | undefined;
|
1612
1612
|
creatorId?: string | undefined;
|
1613
|
-
mainParameter?: string | undefined;
|
1614
1613
|
test?: boolean | undefined;
|
1615
1614
|
page?: number | undefined;
|
1615
|
+
mainParameter?: string | undefined;
|
1616
1616
|
creatorTag?: string | undefined;
|
1617
1617
|
distributionChainIds?: number[] | undefined;
|
1618
1618
|
types?: string[] | undefined;
|
@@ -1635,8 +1635,6 @@ declare const app: Elysia<"", {
|
|
1635
1635
|
tags: string[];
|
1636
1636
|
} | null | undefined;
|
1637
1637
|
depositUrl?: string | undefined;
|
1638
|
-
explorerAddress?: string | undefined;
|
1639
|
-
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;
|
1640
1638
|
aprRecord?: {
|
1641
1639
|
timestamp: string | bigint;
|
1642
1640
|
cumulated: number;
|
@@ -1647,6 +1645,8 @@ declare const app: Elysia<"", {
|
|
1647
1645
|
identifier: string;
|
1648
1646
|
}[];
|
1649
1647
|
} | undefined;
|
1648
|
+
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;
|
1649
|
+
explorerAddress?: string | undefined;
|
1650
1650
|
tvlRecord?: {
|
1651
1651
|
timestamp: string | bigint;
|
1652
1652
|
total: number;
|
@@ -1710,9 +1710,6 @@ declare const app: Elysia<"", {
|
|
1710
1710
|
creatorId?: string | null | undefined;
|
1711
1711
|
address: string;
|
1712
1712
|
} | undefined;
|
1713
|
-
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;
|
1714
|
-
rootCampaignId?: string | undefined;
|
1715
|
-
parentCampaignId?: string | undefined;
|
1716
1713
|
campaignStatus?: {
|
1717
1714
|
error?: string | undefined;
|
1718
1715
|
details?: any;
|
@@ -1720,6 +1717,9 @@ declare const app: Elysia<"", {
|
|
1720
1717
|
computedUntil: string | number;
|
1721
1718
|
processingStarted: string | number;
|
1722
1719
|
} | undefined;
|
1720
|
+
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;
|
1721
|
+
rootCampaignId?: string | undefined;
|
1722
|
+
parentCampaignId?: string | undefined;
|
1723
1723
|
distributionChain?: {
|
1724
1724
|
explorers?: {
|
1725
1725
|
chainId: number;
|
@@ -1754,9 +1754,6 @@ declare const app: Elysia<"", {
|
|
1754
1754
|
computeChainId: number;
|
1755
1755
|
distributionChainId: number;
|
1756
1756
|
endTimestamp: string | number;
|
1757
|
-
creatorAddress: string;
|
1758
|
-
subType: number | null;
|
1759
|
-
createdAt: string;
|
1760
1757
|
chain: {
|
1761
1758
|
explorers?: {
|
1762
1759
|
chainId: number;
|
@@ -1767,14 +1764,12 @@ declare const app: Elysia<"", {
|
|
1767
1764
|
id: number;
|
1768
1765
|
icon: string;
|
1769
1766
|
};
|
1767
|
+
subType: number | null;
|
1768
|
+
creatorAddress: string;
|
1769
|
+
createdAt: string;
|
1770
1770
|
}[];
|
1771
1771
|
action: string;
|
1772
1772
|
type: string;
|
1773
|
-
howToSteps: string[];
|
1774
|
-
identifier: string;
|
1775
|
-
dailyRewards: number;
|
1776
|
-
tags: string[];
|
1777
|
-
lastCampaignCreatedAt: number;
|
1778
1773
|
chain: {
|
1779
1774
|
explorers?: {
|
1780
1775
|
chainId: number;
|
@@ -1785,6 +1780,11 @@ declare const app: Elysia<"", {
|
|
1785
1780
|
id: number;
|
1786
1781
|
icon: string;
|
1787
1782
|
};
|
1783
|
+
identifier: string;
|
1784
|
+
howToSteps: string[];
|
1785
|
+
dailyRewards: number;
|
1786
|
+
tags: string[];
|
1787
|
+
lastCampaignCreatedAt: number;
|
1788
1788
|
}[];
|
1789
1789
|
readonly 500: {
|
1790
1790
|
info: string;
|
@@ -1837,8 +1837,6 @@ declare const app: Elysia<"", {
|
|
1837
1837
|
tags: string[];
|
1838
1838
|
} | null | undefined;
|
1839
1839
|
depositUrl?: string | undefined;
|
1840
|
-
explorerAddress?: string | undefined;
|
1841
|
-
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;
|
1842
1840
|
aprRecord?: {
|
1843
1841
|
timestamp: string | bigint;
|
1844
1842
|
cumulated: number;
|
@@ -1849,6 +1847,8 @@ declare const app: Elysia<"", {
|
|
1849
1847
|
identifier: string;
|
1850
1848
|
}[];
|
1851
1849
|
} | undefined;
|
1850
|
+
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;
|
1851
|
+
explorerAddress?: string | undefined;
|
1852
1852
|
tvlRecord?: {
|
1853
1853
|
timestamp: string | bigint;
|
1854
1854
|
total: number;
|
@@ -1907,11 +1907,6 @@ declare const app: Elysia<"", {
|
|
1907
1907
|
chainId: number;
|
1908
1908
|
action: string;
|
1909
1909
|
type: string;
|
1910
|
-
howToSteps: string[];
|
1911
|
-
identifier: string;
|
1912
|
-
dailyRewards: number;
|
1913
|
-
tags: string[];
|
1914
|
-
lastCampaignCreatedAt: number;
|
1915
1910
|
chain: {
|
1916
1911
|
explorers?: {
|
1917
1912
|
chainId: number;
|
@@ -1922,6 +1917,11 @@ declare const app: Elysia<"", {
|
|
1922
1917
|
id: number;
|
1923
1918
|
icon: string;
|
1924
1919
|
};
|
1920
|
+
identifier: string;
|
1921
|
+
howToSteps: string[];
|
1922
|
+
dailyRewards: number;
|
1923
|
+
tags: string[];
|
1924
|
+
lastCampaignCreatedAt: number;
|
1925
1925
|
};
|
1926
1926
|
readonly 500: {
|
1927
1927
|
info: string;
|
@@ -1975,8 +1975,6 @@ declare const app: Elysia<"", {
|
|
1975
1975
|
tags: string[];
|
1976
1976
|
} | null | undefined;
|
1977
1977
|
depositUrl?: string | undefined;
|
1978
|
-
explorerAddress?: string | undefined;
|
1979
|
-
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;
|
1980
1978
|
aprRecord?: {
|
1981
1979
|
timestamp: string | bigint;
|
1982
1980
|
cumulated: number;
|
@@ -1987,6 +1985,8 @@ declare const app: Elysia<"", {
|
|
1987
1985
|
identifier: string;
|
1988
1986
|
}[];
|
1989
1987
|
} | undefined;
|
1988
|
+
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;
|
1989
|
+
explorerAddress?: string | undefined;
|
1990
1990
|
tvlRecord?: {
|
1991
1991
|
timestamp: string | bigint;
|
1992
1992
|
total: number;
|
@@ -2050,9 +2050,6 @@ declare const app: Elysia<"", {
|
|
2050
2050
|
creatorId?: string | null | undefined;
|
2051
2051
|
address: string;
|
2052
2052
|
} | undefined;
|
2053
|
-
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;
|
2054
|
-
rootCampaignId?: string | undefined;
|
2055
|
-
parentCampaignId?: string | undefined;
|
2056
2053
|
campaignStatus?: {
|
2057
2054
|
error?: string | undefined;
|
2058
2055
|
details?: any;
|
@@ -2060,6 +2057,9 @@ declare const app: Elysia<"", {
|
|
2060
2057
|
computedUntil: string | number;
|
2061
2058
|
processingStarted: string | number;
|
2062
2059
|
} | undefined;
|
2060
|
+
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;
|
2061
|
+
rootCampaignId?: string | undefined;
|
2062
|
+
parentCampaignId?: string | undefined;
|
2063
2063
|
distributionChain?: {
|
2064
2064
|
explorers?: {
|
2065
2065
|
chainId: number;
|
@@ -2094,9 +2094,6 @@ declare const app: Elysia<"", {
|
|
2094
2094
|
computeChainId: number;
|
2095
2095
|
distributionChainId: number;
|
2096
2096
|
endTimestamp: string | number;
|
2097
|
-
creatorAddress: string;
|
2098
|
-
subType: number | null;
|
2099
|
-
createdAt: string;
|
2100
2097
|
chain: {
|
2101
2098
|
explorers?: {
|
2102
2099
|
chainId: number;
|
@@ -2107,14 +2104,12 @@ declare const app: Elysia<"", {
|
|
2107
2104
|
id: number;
|
2108
2105
|
icon: string;
|
2109
2106
|
};
|
2107
|
+
subType: number | null;
|
2108
|
+
creatorAddress: string;
|
2109
|
+
createdAt: string;
|
2110
2110
|
}[];
|
2111
2111
|
action: string;
|
2112
2112
|
type: string;
|
2113
|
-
howToSteps: string[];
|
2114
|
-
identifier: string;
|
2115
|
-
dailyRewards: number;
|
2116
|
-
tags: string[];
|
2117
|
-
lastCampaignCreatedAt: number;
|
2118
2113
|
chain: {
|
2119
2114
|
explorers?: {
|
2120
2115
|
chainId: number;
|
@@ -2125,6 +2120,11 @@ declare const app: Elysia<"", {
|
|
2125
2120
|
id: number;
|
2126
2121
|
icon: string;
|
2127
2122
|
};
|
2123
|
+
identifier: string;
|
2124
|
+
howToSteps: string[];
|
2125
|
+
dailyRewards: number;
|
2126
|
+
tags: string[];
|
2127
|
+
lastCampaignCreatedAt: number;
|
2128
2128
|
};
|
2129
2129
|
readonly 500: {
|
2130
2130
|
info: string;
|
@@ -2169,8 +2169,8 @@ declare const app: Elysia<"", {
|
|
2169
2169
|
type?: string | undefined;
|
2170
2170
|
search?: string | undefined;
|
2171
2171
|
creatorAddress?: string | undefined;
|
2172
|
-
mainProtocolId?: string | undefined;
|
2173
2172
|
identifier?: string | undefined;
|
2173
|
+
mainProtocolId?: string | undefined;
|
2174
2174
|
tags?: string | undefined;
|
2175
2175
|
test?: boolean | undefined;
|
2176
2176
|
page?: number | undefined;
|
@@ -2196,8 +2196,6 @@ declare const app: Elysia<"", {
|
|
2196
2196
|
tags: string[];
|
2197
2197
|
} | null | undefined;
|
2198
2198
|
depositUrl?: string | undefined;
|
2199
|
-
explorerAddress?: string | undefined;
|
2200
|
-
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;
|
2201
2199
|
aprRecord?: {
|
2202
2200
|
timestamp: string | bigint;
|
2203
2201
|
cumulated: number;
|
@@ -2208,6 +2206,8 @@ declare const app: Elysia<"", {
|
|
2208
2206
|
identifier: string;
|
2209
2207
|
}[];
|
2210
2208
|
} | undefined;
|
2209
|
+
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;
|
2210
|
+
explorerAddress?: string | undefined;
|
2211
2211
|
tvlRecord?: {
|
2212
2212
|
timestamp: string | bigint;
|
2213
2213
|
total: number;
|
@@ -2266,11 +2266,6 @@ declare const app: Elysia<"", {
|
|
2266
2266
|
chainId: number;
|
2267
2267
|
action: string;
|
2268
2268
|
type: string;
|
2269
|
-
howToSteps: string[];
|
2270
|
-
identifier: string;
|
2271
|
-
dailyRewards: number;
|
2272
|
-
tags: string[];
|
2273
|
-
lastCampaignCreatedAt: number;
|
2274
2269
|
chain: {
|
2275
2270
|
explorers?: {
|
2276
2271
|
chainId: number;
|
@@ -2281,6 +2276,11 @@ declare const app: Elysia<"", {
|
|
2281
2276
|
id: number;
|
2282
2277
|
icon: string;
|
2283
2278
|
};
|
2279
|
+
identifier: string;
|
2280
|
+
howToSteps: string[];
|
2281
|
+
dailyRewards: number;
|
2282
|
+
tags: string[];
|
2283
|
+
lastCampaignCreatedAt: number;
|
2284
2284
|
} | null)[];
|
2285
2285
|
422: {
|
2286
2286
|
type: "validation";
|
@@ -2315,8 +2315,8 @@ declare const app: Elysia<"", {
|
|
2315
2315
|
type?: string | undefined;
|
2316
2316
|
search?: string | undefined;
|
2317
2317
|
creatorAddress?: string | undefined;
|
2318
|
-
mainProtocolId?: string | undefined;
|
2319
2318
|
identifier?: string | undefined;
|
2319
|
+
mainProtocolId?: string | undefined;
|
2320
2320
|
tags?: string | undefined;
|
2321
2321
|
test?: boolean | undefined;
|
2322
2322
|
page?: number | undefined;
|
@@ -2365,8 +2365,8 @@ declare const app: Elysia<"", {
|
|
2365
2365
|
type?: string | undefined;
|
2366
2366
|
search?: string | undefined;
|
2367
2367
|
creatorAddress?: string | undefined;
|
2368
|
-
mainProtocolId?: string | undefined;
|
2369
2368
|
identifier?: string | undefined;
|
2369
|
+
mainProtocolId?: string | undefined;
|
2370
2370
|
tags?: string | undefined;
|
2371
2371
|
test?: boolean | undefined;
|
2372
2372
|
page?: number | undefined;
|
@@ -2425,8 +2425,8 @@ declare const app: Elysia<"", {
|
|
2425
2425
|
type?: string | undefined;
|
2426
2426
|
search?: string | undefined;
|
2427
2427
|
creatorAddress?: string | undefined;
|
2428
|
-
mainProtocolId?: string | undefined;
|
2429
2428
|
identifier?: string | undefined;
|
2429
|
+
mainProtocolId?: string | undefined;
|
2430
2430
|
tags?: string | undefined;
|
2431
2431
|
test?: boolean | undefined;
|
2432
2432
|
page?: number | undefined;
|
@@ -2487,8 +2487,8 @@ declare const app: Elysia<"", {
|
|
2487
2487
|
type?: string | undefined;
|
2488
2488
|
search?: string | undefined;
|
2489
2489
|
creatorAddress?: string | undefined;
|
2490
|
-
mainProtocolId?: string | undefined;
|
2491
2490
|
identifier?: string | undefined;
|
2491
|
+
mainProtocolId?: string | undefined;
|
2492
2492
|
tags?: string | undefined;
|
2493
2493
|
test?: boolean | undefined;
|
2494
2494
|
page?: number | undefined;
|
@@ -2543,8 +2543,8 @@ declare const app: Elysia<"", {
|
|
2543
2543
|
type?: string | undefined;
|
2544
2544
|
search?: string | undefined;
|
2545
2545
|
creatorAddress?: string | undefined;
|
2546
|
-
mainProtocolId?: string | undefined;
|
2547
2546
|
identifier?: string | undefined;
|
2547
|
+
mainProtocolId?: string | undefined;
|
2548
2548
|
tags?: string | undefined;
|
2549
2549
|
test?: boolean | undefined;
|
2550
2550
|
page?: number | undefined;
|
@@ -2600,8 +2600,8 @@ declare const app: Elysia<"", {
|
|
2600
2600
|
type?: string | undefined;
|
2601
2601
|
search?: string | undefined;
|
2602
2602
|
creatorAddress?: string | undefined;
|
2603
|
-
mainProtocolId?: string | undefined;
|
2604
2603
|
identifier?: string | undefined;
|
2604
|
+
mainProtocolId?: string | undefined;
|
2605
2605
|
tags?: string | undefined;
|
2606
2606
|
test?: boolean | undefined;
|
2607
2607
|
page?: number | undefined;
|
@@ -2679,6 +2679,14 @@ declare const app: Elysia<"", {
|
|
2679
2679
|
explorerAddress: string | undefined;
|
2680
2680
|
tags: string[];
|
2681
2681
|
} | {
|
2682
|
+
Protocols: {
|
2683
|
+
name: string;
|
2684
|
+
description: string;
|
2685
|
+
id: string;
|
2686
|
+
url: string;
|
2687
|
+
icon: string;
|
2688
|
+
tags: string[];
|
2689
|
+
}[];
|
2682
2690
|
Tokens: {
|
2683
2691
|
symbol: string;
|
2684
2692
|
name: string | null;
|
@@ -2695,14 +2703,6 @@ declare const app: Elysia<"", {
|
|
2695
2703
|
verified: boolean;
|
2696
2704
|
displaySymbol: string;
|
2697
2705
|
}[];
|
2698
|
-
Protocols: {
|
2699
|
-
name: string;
|
2700
|
-
description: string;
|
2701
|
-
id: string;
|
2702
|
-
url: string;
|
2703
|
-
icon: string;
|
2704
|
-
tags: string[];
|
2705
|
-
}[];
|
2706
2706
|
name: string;
|
2707
2707
|
apr: number;
|
2708
2708
|
tvl: number;
|
@@ -2713,11 +2713,11 @@ declare const app: Elysia<"", {
|
|
2713
2713
|
action: import("@package/databases").OpportunityAction;
|
2714
2714
|
type: string;
|
2715
2715
|
depositUrl: string | null;
|
2716
|
-
explorerAddress: string | null;
|
2717
|
-
howToSteps: string[];
|
2718
|
-
mainProtocolId: string | null;
|
2719
2716
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
2720
2717
|
identifier: string;
|
2718
|
+
howToSteps: string[];
|
2719
|
+
explorerAddress: string | null;
|
2720
|
+
mainProtocolId: string | null;
|
2721
2721
|
dailyRewards: number;
|
2722
2722
|
tags: string[];
|
2723
2723
|
lastCampaignCreatedAt: Date;
|
@@ -2759,11 +2759,11 @@ declare const app: Elysia<"", {
|
|
2759
2759
|
action: import("@package/databases").OpportunityAction;
|
2760
2760
|
type: string;
|
2761
2761
|
depositUrl: string | null;
|
2762
|
-
explorerAddress: string | null;
|
2763
|
-
howToSteps: string[];
|
2764
|
-
mainProtocolId: string | null;
|
2765
2762
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
2766
2763
|
identifier: string;
|
2764
|
+
howToSteps: string[];
|
2765
|
+
explorerAddress: string | null;
|
2766
|
+
mainProtocolId: string | null;
|
2767
2767
|
dailyRewards: number;
|
2768
2768
|
tags: string[];
|
2769
2769
|
lastCampaignCreatedAt: Date;
|
@@ -2791,8 +2791,8 @@ declare const app: Elysia<"", {
|
|
2791
2791
|
description?: string | undefined;
|
2792
2792
|
action?: "POOL" | "INVALID" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "SWAP" | undefined;
|
2793
2793
|
depositUrl?: string | undefined;
|
2794
|
-
explorerAddress?: string | undefined;
|
2795
2794
|
howToSteps?: string[] | undefined;
|
2795
|
+
explorerAddress?: string | undefined;
|
2796
2796
|
mainProtocolId?: string | undefined;
|
2797
2797
|
};
|
2798
2798
|
params: {
|
@@ -2812,11 +2812,11 @@ declare const app: Elysia<"", {
|
|
2812
2812
|
action: import("@package/databases").OpportunityAction;
|
2813
2813
|
type: string;
|
2814
2814
|
depositUrl: string | null;
|
2815
|
-
explorerAddress: string | null;
|
2816
|
-
howToSteps: string[];
|
2817
|
-
mainProtocolId: string | null;
|
2818
2815
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
2819
2816
|
identifier: string;
|
2817
|
+
howToSteps: string[];
|
2818
|
+
explorerAddress: string | null;
|
2819
|
+
mainProtocolId: string | null;
|
2820
2820
|
dailyRewards: number;
|
2821
2821
|
tags: string[];
|
2822
2822
|
lastCampaignCreatedAt: Date;
|
@@ -2840,7 +2840,7 @@ declare const app: Elysia<"", {
|
|
2840
2840
|
":id": {
|
2841
2841
|
override: {
|
2842
2842
|
delete: {
|
2843
|
-
body: ("name" | "description" | "action" | "depositUrl" | "
|
2843
|
+
body: ("name" | "description" | "action" | "depositUrl" | "howToSteps" | "explorerAddress" | "mainProtocolId")[];
|
2844
2844
|
params: {
|
2845
2845
|
id: string;
|
2846
2846
|
};
|
@@ -2880,6 +2880,14 @@ declare const app: Elysia<"", {
|
|
2880
2880
|
explorerAddress: string | undefined;
|
2881
2881
|
tags: string[];
|
2882
2882
|
} | {
|
2883
|
+
Protocols: {
|
2884
|
+
name: string;
|
2885
|
+
description: string;
|
2886
|
+
id: string;
|
2887
|
+
url: string;
|
2888
|
+
icon: string;
|
2889
|
+
tags: string[];
|
2890
|
+
}[];
|
2883
2891
|
Tokens: {
|
2884
2892
|
symbol: string;
|
2885
2893
|
name: string | null;
|
@@ -2896,14 +2904,6 @@ declare const app: Elysia<"", {
|
|
2896
2904
|
verified: boolean;
|
2897
2905
|
displaySymbol: string;
|
2898
2906
|
}[];
|
2899
|
-
Protocols: {
|
2900
|
-
name: string;
|
2901
|
-
description: string;
|
2902
|
-
id: string;
|
2903
|
-
url: string;
|
2904
|
-
icon: string;
|
2905
|
-
tags: string[];
|
2906
|
-
}[];
|
2907
2907
|
name: string;
|
2908
2908
|
apr: number;
|
2909
2909
|
tvl: number;
|
@@ -2914,11 +2914,11 @@ declare const app: Elysia<"", {
|
|
2914
2914
|
action: import("@package/databases").OpportunityAction;
|
2915
2915
|
type: string;
|
2916
2916
|
depositUrl: string | null;
|
2917
|
-
explorerAddress: string | null;
|
2918
|
-
howToSteps: string[];
|
2919
|
-
mainProtocolId: string | null;
|
2920
2917
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
2921
2918
|
identifier: string;
|
2919
|
+
howToSteps: string[];
|
2920
|
+
explorerAddress: string | null;
|
2921
|
+
mainProtocolId: string | null;
|
2922
2922
|
dailyRewards: number;
|
2923
2923
|
tags: string[];
|
2924
2924
|
lastCampaignCreatedAt: Date;
|
@@ -2971,18 +2971,18 @@ declare const app: Elysia<"", {
|
|
2971
2971
|
campaignId: string;
|
2972
2972
|
description: string | null;
|
2973
2973
|
id: string;
|
2974
|
-
params: import("@prisma/client/runtime/
|
2974
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
2975
2975
|
amount: string;
|
2976
2976
|
startTimestamp: bigint;
|
2977
2977
|
type: string;
|
2978
2978
|
computeChainId: number;
|
2979
2979
|
distributionChainId: number;
|
2980
2980
|
endTimestamp: bigint;
|
2981
|
-
opportunityId: string;
|
2982
|
-
creatorAddress: string;
|
2983
2981
|
distributionType: import("@package/databases").DistributionType;
|
2984
2982
|
subType: number | null;
|
2985
2983
|
rewardTokenId: string;
|
2984
|
+
opportunityId: string;
|
2985
|
+
creatorAddress: string;
|
2986
2986
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
2987
2987
|
createdAt: Date;
|
2988
2988
|
rootCampaignId: string | null;
|
@@ -3020,6 +3020,14 @@ declare const app: Elysia<"", {
|
|
3020
3020
|
explorerAddress: string | undefined;
|
3021
3021
|
tags: string[];
|
3022
3022
|
} | {
|
3023
|
+
Protocols: {
|
3024
|
+
name: string;
|
3025
|
+
description: string;
|
3026
|
+
id: string;
|
3027
|
+
url: string;
|
3028
|
+
icon: string;
|
3029
|
+
tags: string[];
|
3030
|
+
}[];
|
3023
3031
|
Tokens: {
|
3024
3032
|
symbol: string;
|
3025
3033
|
name: string | null;
|
@@ -3036,14 +3044,6 @@ declare const app: Elysia<"", {
|
|
3036
3044
|
verified: boolean;
|
3037
3045
|
displaySymbol: string;
|
3038
3046
|
}[];
|
3039
|
-
Protocols: {
|
3040
|
-
name: string;
|
3041
|
-
description: string;
|
3042
|
-
id: string;
|
3043
|
-
url: string;
|
3044
|
-
icon: string;
|
3045
|
-
tags: string[];
|
3046
|
-
}[];
|
3047
3047
|
name: string;
|
3048
3048
|
apr: number;
|
3049
3049
|
tvl: number;
|
@@ -3054,11 +3054,11 @@ declare const app: Elysia<"", {
|
|
3054
3054
|
action: import("@package/databases").OpportunityAction;
|
3055
3055
|
type: string;
|
3056
3056
|
depositUrl: string | null;
|
3057
|
-
explorerAddress: string | null;
|
3058
|
-
howToSteps: string[];
|
3059
|
-
mainProtocolId: string | null;
|
3060
3057
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
3061
3058
|
identifier: string;
|
3059
|
+
howToSteps: string[];
|
3060
|
+
explorerAddress: string | null;
|
3061
|
+
mainProtocolId: string | null;
|
3062
3062
|
dailyRewards: number;
|
3063
3063
|
tags: string[];
|
3064
3064
|
lastCampaignCreatedAt: Date;
|
@@ -3094,9 +3094,6 @@ declare const app: Elysia<"", {
|
|
3094
3094
|
creatorId?: string | null | undefined;
|
3095
3095
|
address: string;
|
3096
3096
|
} | undefined;
|
3097
|
-
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;
|
3098
|
-
rootCampaignId?: string | undefined;
|
3099
|
-
parentCampaignId?: string | undefined;
|
3100
3097
|
campaignStatus?: {
|
3101
3098
|
error?: string | undefined;
|
3102
3099
|
details?: any;
|
@@ -3104,6 +3101,9 @@ declare const app: Elysia<"", {
|
|
3104
3101
|
computedUntil: string | number;
|
3105
3102
|
processingStarted: string | number;
|
3106
3103
|
} | undefined;
|
3104
|
+
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;
|
3105
|
+
rootCampaignId?: string | undefined;
|
3106
|
+
parentCampaignId?: string | undefined;
|
3107
3107
|
distributionChain?: {
|
3108
3108
|
explorers?: {
|
3109
3109
|
chainId: number;
|
@@ -3138,9 +3138,6 @@ declare const app: Elysia<"", {
|
|
3138
3138
|
computeChainId: number;
|
3139
3139
|
distributionChainId: number;
|
3140
3140
|
endTimestamp: string | number;
|
3141
|
-
creatorAddress: string;
|
3142
|
-
subType: number | null;
|
3143
|
-
createdAt: string;
|
3144
3141
|
chain: {
|
3145
3142
|
explorers?: {
|
3146
3143
|
chainId: number;
|
@@ -3151,6 +3148,9 @@ declare const app: Elysia<"", {
|
|
3151
3148
|
id: number;
|
3152
3149
|
icon: string;
|
3153
3150
|
};
|
3151
|
+
subType: number | null;
|
3152
|
+
creatorAddress: string;
|
3153
|
+
createdAt: string;
|
3154
3154
|
};
|
3155
3155
|
422: {
|
3156
3156
|
type: "validation";
|
@@ -3373,16 +3373,16 @@ declare const app: Elysia<"", {
|
|
3373
3373
|
tokenSymbol?: string | undefined;
|
3374
3374
|
type?: string | undefined;
|
3375
3375
|
endTimestamp?: string | undefined;
|
3376
|
+
subType?: number | undefined;
|
3376
3377
|
opportunityId?: string | undefined;
|
3377
3378
|
creatorAddress?: string | undefined;
|
3378
|
-
mainProtocolId?: string | undefined;
|
3379
|
-
subType?: number | undefined;
|
3380
3379
|
rootCampaignId?: string | undefined;
|
3381
3380
|
parentCampaignId?: string | undefined;
|
3381
|
+
mainProtocolId?: string | undefined;
|
3382
3382
|
creatorId?: string | undefined;
|
3383
|
-
mainParameter?: string | undefined;
|
3384
3383
|
test?: boolean | undefined;
|
3385
3384
|
page?: number | undefined;
|
3385
|
+
mainParameter?: string | undefined;
|
3386
3386
|
creatorTag?: string | undefined;
|
3387
3387
|
distributionChainIds?: number[] | undefined;
|
3388
3388
|
types?: string[] | undefined;
|
@@ -3399,9 +3399,6 @@ declare const app: Elysia<"", {
|
|
3399
3399
|
creatorId?: string | null | undefined;
|
3400
3400
|
address: string;
|
3401
3401
|
} | undefined;
|
3402
|
-
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;
|
3403
|
-
rootCampaignId?: string | undefined;
|
3404
|
-
parentCampaignId?: string | undefined;
|
3405
3402
|
campaignStatus?: {
|
3406
3403
|
error?: string | undefined;
|
3407
3404
|
details?: any;
|
@@ -3409,6 +3406,9 @@ declare const app: Elysia<"", {
|
|
3409
3406
|
computedUntil: string | number;
|
3410
3407
|
processingStarted: string | number;
|
3411
3408
|
} | undefined;
|
3409
|
+
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;
|
3410
|
+
rootCampaignId?: string | undefined;
|
3411
|
+
parentCampaignId?: string | undefined;
|
3412
3412
|
distributionChain?: {
|
3413
3413
|
explorers?: {
|
3414
3414
|
chainId: number;
|
@@ -3443,9 +3443,6 @@ declare const app: Elysia<"", {
|
|
3443
3443
|
computeChainId: number;
|
3444
3444
|
distributionChainId: number;
|
3445
3445
|
endTimestamp: string | number;
|
3446
|
-
creatorAddress: string;
|
3447
|
-
subType: number | null;
|
3448
|
-
createdAt: string;
|
3449
3446
|
chain: {
|
3450
3447
|
explorers?: {
|
3451
3448
|
chainId: number;
|
@@ -3456,6 +3453,9 @@ declare const app: Elysia<"", {
|
|
3456
3453
|
id: number;
|
3457
3454
|
icon: string;
|
3458
3455
|
};
|
3456
|
+
subType: number | null;
|
3457
|
+
creatorAddress: string;
|
3458
|
+
createdAt: string;
|
3459
3459
|
}[];
|
3460
3460
|
422: {
|
3461
3461
|
type: "validation";
|
@@ -3487,16 +3487,16 @@ declare const app: Elysia<"", {
|
|
3487
3487
|
tokenSymbol?: string | undefined;
|
3488
3488
|
type?: string | undefined;
|
3489
3489
|
endTimestamp?: string | undefined;
|
3490
|
+
subType?: number | undefined;
|
3490
3491
|
opportunityId?: string | undefined;
|
3491
3492
|
creatorAddress?: string | undefined;
|
3492
|
-
mainProtocolId?: string | undefined;
|
3493
|
-
subType?: number | undefined;
|
3494
3493
|
rootCampaignId?: string | undefined;
|
3495
3494
|
parentCampaignId?: string | undefined;
|
3495
|
+
mainProtocolId?: string | undefined;
|
3496
3496
|
creatorId?: string | undefined;
|
3497
|
-
mainParameter?: string | undefined;
|
3498
3497
|
test?: boolean | undefined;
|
3499
3498
|
page?: number | undefined;
|
3499
|
+
mainParameter?: string | undefined;
|
3500
3500
|
creatorTag?: string | undefined;
|
3501
3501
|
distributionChainIds?: number[] | undefined;
|
3502
3502
|
types?: string[] | undefined;
|
@@ -3538,16 +3538,16 @@ declare const app: Elysia<"", {
|
|
3538
3538
|
tokenSymbol?: string | undefined;
|
3539
3539
|
type?: string | undefined;
|
3540
3540
|
endTimestamp?: string | undefined;
|
3541
|
+
subType?: number | undefined;
|
3541
3542
|
opportunityId?: string | undefined;
|
3542
3543
|
creatorAddress?: string | undefined;
|
3543
|
-
mainProtocolId?: string | undefined;
|
3544
|
-
subType?: number | undefined;
|
3545
3544
|
rootCampaignId?: string | undefined;
|
3546
3545
|
parentCampaignId?: string | undefined;
|
3546
|
+
mainProtocolId?: string | undefined;
|
3547
3547
|
creatorId?: string | undefined;
|
3548
|
-
mainParameter?: string | undefined;
|
3549
3548
|
test?: boolean | undefined;
|
3550
3549
|
page?: number | undefined;
|
3550
|
+
mainParameter?: string | undefined;
|
3551
3551
|
creatorTag?: string | undefined;
|
3552
3552
|
distributionChainIds?: number[] | undefined;
|
3553
3553
|
types?: string[] | undefined;
|
@@ -3594,16 +3594,16 @@ declare const app: Elysia<"", {
|
|
3594
3594
|
tokenSymbol?: string | undefined;
|
3595
3595
|
type?: string | undefined;
|
3596
3596
|
endTimestamp?: string | undefined;
|
3597
|
+
subType?: number | undefined;
|
3597
3598
|
opportunityId?: string | undefined;
|
3598
3599
|
creatorAddress?: string | undefined;
|
3599
|
-
mainProtocolId?: string | undefined;
|
3600
|
-
subType?: number | undefined;
|
3601
3600
|
rootCampaignId?: string | undefined;
|
3602
3601
|
parentCampaignId?: string | undefined;
|
3602
|
+
mainProtocolId?: string | undefined;
|
3603
3603
|
creatorId?: string | undefined;
|
3604
|
-
mainParameter?: string | undefined;
|
3605
3604
|
test?: boolean | undefined;
|
3606
3605
|
page?: number | undefined;
|
3606
|
+
mainParameter?: string | undefined;
|
3607
3607
|
creatorTag?: string | undefined;
|
3608
3608
|
distributionChainIds?: number[] | undefined;
|
3609
3609
|
types?: string[] | undefined;
|
@@ -3651,16 +3651,16 @@ declare const app: Elysia<"", {
|
|
3651
3651
|
tokenSymbol?: string | undefined;
|
3652
3652
|
type?: string | undefined;
|
3653
3653
|
endTimestamp?: string | undefined;
|
3654
|
+
subType?: number | undefined;
|
3654
3655
|
opportunityId?: string | undefined;
|
3655
3656
|
creatorAddress?: string | undefined;
|
3656
|
-
mainProtocolId?: string | undefined;
|
3657
|
-
subType?: number | undefined;
|
3658
3657
|
rootCampaignId?: string | undefined;
|
3659
3658
|
parentCampaignId?: string | undefined;
|
3659
|
+
mainProtocolId?: string | undefined;
|
3660
3660
|
creatorId?: string | undefined;
|
3661
|
-
mainParameter?: string | undefined;
|
3662
3661
|
test?: boolean | undefined;
|
3663
3662
|
page?: number | undefined;
|
3663
|
+
mainParameter?: string | undefined;
|
3664
3664
|
creatorTag?: string | undefined;
|
3665
3665
|
distributionChainIds?: number[] | undefined;
|
3666
3666
|
types?: string[] | undefined;
|
@@ -3935,8 +3935,8 @@ declare const app: Elysia<"", {
|
|
3935
3935
|
campaignId?: string | undefined;
|
3936
3936
|
id?: string | undefined;
|
3937
3937
|
amount?: string | undefined;
|
3938
|
-
creatorAddress?: string | undefined;
|
3939
3938
|
subType?: number | undefined;
|
3939
|
+
creatorAddress?: string | undefined;
|
3940
3940
|
rewardToken: string;
|
3941
3941
|
params: any;
|
3942
3942
|
startTimestamp: number;
|
@@ -3973,8 +3973,8 @@ declare const app: Elysia<"", {
|
|
3973
3973
|
campaignId?: string | undefined;
|
3974
3974
|
id?: string | undefined;
|
3975
3975
|
amount?: string | undefined;
|
3976
|
-
creatorAddress?: string | undefined;
|
3977
3976
|
subType?: number | undefined;
|
3977
|
+
creatorAddress?: string | undefined;
|
3978
3978
|
rewardToken: string;
|
3979
3979
|
params: any;
|
3980
3980
|
startTimestamp: number;
|
@@ -3993,18 +3993,18 @@ declare const app: Elysia<"", {
|
|
3993
3993
|
campaignId: string;
|
3994
3994
|
description: string | null;
|
3995
3995
|
id: string;
|
3996
|
-
params: import("@prisma/client/runtime/
|
3996
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
3997
3997
|
amount: string;
|
3998
3998
|
startTimestamp: bigint;
|
3999
3999
|
type: string;
|
4000
4000
|
computeChainId: number;
|
4001
4001
|
distributionChainId: number;
|
4002
4002
|
endTimestamp: bigint;
|
4003
|
-
opportunityId: string;
|
4004
|
-
creatorAddress: string;
|
4005
4003
|
distributionType: import("@package/databases").DistributionType;
|
4006
4004
|
subType: number | null;
|
4007
4005
|
rewardTokenId: string;
|
4006
|
+
opportunityId: string;
|
4007
|
+
creatorAddress: string;
|
4008
4008
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
4009
4009
|
createdAt: Date;
|
4010
4010
|
rootCampaignId: string | null;
|
@@ -4042,6 +4042,14 @@ declare const app: Elysia<"", {
|
|
4042
4042
|
explorerAddress: string | undefined;
|
4043
4043
|
tags: string[];
|
4044
4044
|
} | {
|
4045
|
+
Protocols: {
|
4046
|
+
name: string;
|
4047
|
+
description: string;
|
4048
|
+
id: string;
|
4049
|
+
url: string;
|
4050
|
+
icon: string;
|
4051
|
+
tags: string[];
|
4052
|
+
}[];
|
4045
4053
|
Tokens: {
|
4046
4054
|
symbol: string;
|
4047
4055
|
name: string | null;
|
@@ -4058,14 +4066,6 @@ declare const app: Elysia<"", {
|
|
4058
4066
|
verified: boolean;
|
4059
4067
|
displaySymbol: string;
|
4060
4068
|
}[];
|
4061
|
-
Protocols: {
|
4062
|
-
name: string;
|
4063
|
-
description: string;
|
4064
|
-
id: string;
|
4065
|
-
url: string;
|
4066
|
-
icon: string;
|
4067
|
-
tags: string[];
|
4068
|
-
}[];
|
4069
4069
|
name: string;
|
4070
4070
|
apr: number;
|
4071
4071
|
tvl: number;
|
@@ -4076,11 +4076,11 @@ declare const app: Elysia<"", {
|
|
4076
4076
|
action: import("@package/databases").OpportunityAction;
|
4077
4077
|
type: string;
|
4078
4078
|
depositUrl: string | null;
|
4079
|
-
explorerAddress: string | null;
|
4080
|
-
howToSteps: string[];
|
4081
|
-
mainProtocolId: string | null;
|
4082
4079
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
4083
4080
|
identifier: string;
|
4081
|
+
howToSteps: string[];
|
4082
|
+
explorerAddress: string | null;
|
4083
|
+
mainProtocolId: string | null;
|
4084
4084
|
dailyRewards: number;
|
4085
4085
|
tags: string[];
|
4086
4086
|
lastCampaignCreatedAt: Date;
|
@@ -4116,18 +4116,18 @@ declare const app: Elysia<"", {
|
|
4116
4116
|
campaignId: string;
|
4117
4117
|
description: string | null;
|
4118
4118
|
id: string;
|
4119
|
-
params: import("@prisma/client/runtime/
|
4119
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
4120
4120
|
amount: string;
|
4121
4121
|
startTimestamp: bigint;
|
4122
4122
|
type: string;
|
4123
4123
|
computeChainId: number;
|
4124
4124
|
distributionChainId: number;
|
4125
4125
|
endTimestamp: bigint;
|
4126
|
-
opportunityId: string;
|
4127
|
-
creatorAddress: string;
|
4128
4126
|
distributionType: import("@package/databases").DistributionType;
|
4129
4127
|
subType: number | null;
|
4130
4128
|
rewardTokenId: string;
|
4129
|
+
opportunityId: string;
|
4130
|
+
creatorAddress: string;
|
4131
4131
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
4132
4132
|
createdAt: Date;
|
4133
4133
|
rootCampaignId: string | null;
|
@@ -4165,6 +4165,14 @@ declare const app: Elysia<"", {
|
|
4165
4165
|
explorerAddress: string | undefined;
|
4166
4166
|
tags: string[];
|
4167
4167
|
} | {
|
4168
|
+
Protocols: {
|
4169
|
+
name: string;
|
4170
|
+
description: string;
|
4171
|
+
id: string;
|
4172
|
+
url: string;
|
4173
|
+
icon: string;
|
4174
|
+
tags: string[];
|
4175
|
+
}[];
|
4168
4176
|
Tokens: {
|
4169
4177
|
symbol: string;
|
4170
4178
|
name: string | null;
|
@@ -4181,14 +4189,6 @@ declare const app: Elysia<"", {
|
|
4181
4189
|
verified: boolean;
|
4182
4190
|
displaySymbol: string;
|
4183
4191
|
}[];
|
4184
|
-
Protocols: {
|
4185
|
-
name: string;
|
4186
|
-
description: string;
|
4187
|
-
id: string;
|
4188
|
-
url: string;
|
4189
|
-
icon: string;
|
4190
|
-
tags: string[];
|
4191
|
-
}[];
|
4192
4192
|
name: string;
|
4193
4193
|
apr: number;
|
4194
4194
|
tvl: number;
|
@@ -4199,11 +4199,11 @@ declare const app: Elysia<"", {
|
|
4199
4199
|
action: import("@package/databases").OpportunityAction;
|
4200
4200
|
type: string;
|
4201
4201
|
depositUrl: string | null;
|
4202
|
-
explorerAddress: string | null;
|
4203
|
-
howToSteps: string[];
|
4204
|
-
mainProtocolId: string | null;
|
4205
4202
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
4206
4203
|
identifier: string;
|
4204
|
+
howToSteps: string[];
|
4205
|
+
explorerAddress: string | null;
|
4206
|
+
mainProtocolId: string | null;
|
4207
4207
|
dailyRewards: number;
|
4208
4208
|
tags: string[];
|
4209
4209
|
lastCampaignCreatedAt: Date;
|
@@ -4240,18 +4240,18 @@ declare const app: Elysia<"", {
|
|
4240
4240
|
campaignId: string;
|
4241
4241
|
description: string | null;
|
4242
4242
|
id: string;
|
4243
|
-
params: import("@prisma/client/runtime/
|
4243
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
4244
4244
|
amount: string;
|
4245
4245
|
startTimestamp: bigint;
|
4246
4246
|
type: string;
|
4247
4247
|
computeChainId: number;
|
4248
4248
|
distributionChainId: number;
|
4249
4249
|
endTimestamp: bigint;
|
4250
|
-
opportunityId: string;
|
4251
|
-
creatorAddress: string;
|
4252
4250
|
distributionType: import("@package/databases").DistributionType;
|
4253
4251
|
subType: number | null;
|
4254
4252
|
rewardTokenId: string;
|
4253
|
+
opportunityId: string;
|
4254
|
+
creatorAddress: string;
|
4255
4255
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
4256
4256
|
createdAt: Date;
|
4257
4257
|
rootCampaignId: string | null;
|
@@ -4289,6 +4289,14 @@ declare const app: Elysia<"", {
|
|
4289
4289
|
explorerAddress: string | undefined;
|
4290
4290
|
tags: string[];
|
4291
4291
|
} | {
|
4292
|
+
Protocols: {
|
4293
|
+
name: string;
|
4294
|
+
description: string;
|
4295
|
+
id: string;
|
4296
|
+
url: string;
|
4297
|
+
icon: string;
|
4298
|
+
tags: string[];
|
4299
|
+
}[];
|
4292
4300
|
Tokens: {
|
4293
4301
|
symbol: string;
|
4294
4302
|
name: string | null;
|
@@ -4305,14 +4313,6 @@ declare const app: Elysia<"", {
|
|
4305
4313
|
verified: boolean;
|
4306
4314
|
displaySymbol: string;
|
4307
4315
|
}[];
|
4308
|
-
Protocols: {
|
4309
|
-
name: string;
|
4310
|
-
description: string;
|
4311
|
-
id: string;
|
4312
|
-
url: string;
|
4313
|
-
icon: string;
|
4314
|
-
tags: string[];
|
4315
|
-
}[];
|
4316
4316
|
name: string;
|
4317
4317
|
apr: number;
|
4318
4318
|
tvl: number;
|
@@ -4323,11 +4323,11 @@ declare const app: Elysia<"", {
|
|
4323
4323
|
action: import("@package/databases").OpportunityAction;
|
4324
4324
|
type: string;
|
4325
4325
|
depositUrl: string | null;
|
4326
|
-
explorerAddress: string | null;
|
4327
|
-
howToSteps: string[];
|
4328
|
-
mainProtocolId: string | null;
|
4329
4326
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
4330
4327
|
identifier: string;
|
4328
|
+
howToSteps: string[];
|
4329
|
+
explorerAddress: string | null;
|
4330
|
+
mainProtocolId: string | null;
|
4331
4331
|
dailyRewards: number;
|
4332
4332
|
tags: string[];
|
4333
4333
|
lastCampaignCreatedAt: Date;
|
@@ -5912,7 +5912,7 @@ declare const app: Elysia<"", {
|
|
5912
5912
|
200: {
|
5913
5913
|
symbol: string;
|
5914
5914
|
id: number;
|
5915
|
-
args: import("@prisma/client/runtime/
|
5915
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
5916
5916
|
method: import("@package/databases").PriceSourceMethod;
|
5917
5917
|
}[];
|
5918
5918
|
};
|
@@ -5933,7 +5933,7 @@ declare const app: Elysia<"", {
|
|
5933
5933
|
200: {
|
5934
5934
|
symbol: string;
|
5935
5935
|
id: number;
|
5936
|
-
args: import("@prisma/client/runtime/
|
5936
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
5937
5937
|
method: import("@package/databases").PriceSourceMethod;
|
5938
5938
|
};
|
5939
5939
|
422: {
|
@@ -5998,7 +5998,7 @@ declare const app: Elysia<"", {
|
|
5998
5998
|
200: {
|
5999
5999
|
symbol: string;
|
6000
6000
|
id: number;
|
6001
|
-
args: import("@prisma/client/runtime/
|
6001
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
6002
6002
|
method: import("@package/databases").PriceSourceMethod;
|
6003
6003
|
};
|
6004
6004
|
422: {
|
@@ -6032,7 +6032,7 @@ declare const app: Elysia<"", {
|
|
6032
6032
|
200: {
|
6033
6033
|
symbol: string;
|
6034
6034
|
id: number;
|
6035
|
-
args: import("@prisma/client/runtime/
|
6035
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
6036
6036
|
method: import("@package/databases").PriceSourceMethod;
|
6037
6037
|
};
|
6038
6038
|
422: {
|
@@ -6066,7 +6066,7 @@ declare const app: Elysia<"", {
|
|
6066
6066
|
chainId: number;
|
6067
6067
|
userAddress: string;
|
6068
6068
|
arrestTimestamp: bigint;
|
6069
|
-
arrestDetails: import("@prisma/client/runtime/
|
6069
|
+
arrestDetails: import("@prisma/client/runtime/client").JsonValue;
|
6070
6070
|
}[];
|
6071
6071
|
};
|
6072
6072
|
};
|
@@ -6133,7 +6133,7 @@ declare const app: Elysia<"", {
|
|
6133
6133
|
chainId: number;
|
6134
6134
|
userAddress: string;
|
6135
6135
|
arrestTimestamp: bigint;
|
6136
|
-
arrestDetails: import("@prisma/client/runtime/
|
6136
|
+
arrestDetails: import("@prisma/client/runtime/client").JsonValue;
|
6137
6137
|
};
|
6138
6138
|
422: {
|
6139
6139
|
type: "validation";
|
@@ -6380,6 +6380,14 @@ declare const app: Elysia<"", {
|
|
6380
6380
|
id: number;
|
6381
6381
|
icon: string;
|
6382
6382
|
};
|
6383
|
+
Protocols: {
|
6384
|
+
name: string;
|
6385
|
+
description: string;
|
6386
|
+
id: string;
|
6387
|
+
url: string;
|
6388
|
+
icon: string;
|
6389
|
+
tags: string[];
|
6390
|
+
}[];
|
6383
6391
|
Tokens: {
|
6384
6392
|
symbol: string;
|
6385
6393
|
name: string | null;
|
@@ -6396,14 +6404,6 @@ declare const app: Elysia<"", {
|
|
6396
6404
|
verified: boolean;
|
6397
6405
|
displaySymbol: string;
|
6398
6406
|
}[];
|
6399
|
-
Protocols: {
|
6400
|
-
name: string;
|
6401
|
-
description: string;
|
6402
|
-
id: string;
|
6403
|
-
url: string;
|
6404
|
-
icon: string;
|
6405
|
-
tags: string[];
|
6406
|
-
}[];
|
6407
6407
|
MainProtocol: {
|
6408
6408
|
name: string;
|
6409
6409
|
description: string;
|
@@ -6423,11 +6423,11 @@ declare const app: Elysia<"", {
|
|
6423
6423
|
action: import("@package/databases").OpportunityAction;
|
6424
6424
|
type: string;
|
6425
6425
|
depositUrl: string | null;
|
6426
|
-
explorerAddress: string | null;
|
6427
|
-
howToSteps: string[];
|
6428
|
-
mainProtocolId: string | null;
|
6429
6426
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
6430
6427
|
identifier: string;
|
6428
|
+
howToSteps: string[];
|
6429
|
+
explorerAddress: string | null;
|
6430
|
+
mainProtocolId: string | null;
|
6431
6431
|
dailyRewards: number;
|
6432
6432
|
tags: string[];
|
6433
6433
|
lastCampaignCreatedAt: Date;
|
@@ -7185,7 +7185,7 @@ declare const app: Elysia<"", {
|
|
7185
7185
|
campaignId: string;
|
7186
7186
|
error: string;
|
7187
7187
|
status: import("@package/databases").RunStatus;
|
7188
|
-
details: import("@prisma/client/runtime/
|
7188
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
7189
7189
|
computedUntil: bigint;
|
7190
7190
|
processingStarted: bigint;
|
7191
7191
|
}[];
|
@@ -7214,14 +7214,14 @@ declare const app: Elysia<"", {
|
|
7214
7214
|
campaignId: string;
|
7215
7215
|
error: string;
|
7216
7216
|
status: import("@package/databases").RunStatus;
|
7217
|
-
details: import("@prisma/client/runtime/
|
7217
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
7218
7218
|
computedUntil: bigint;
|
7219
7219
|
processingStarted: bigint;
|
7220
7220
|
}[] | {
|
7221
7221
|
campaignId: string;
|
7222
7222
|
error: string;
|
7223
7223
|
status: import("@package/databases").RunStatus;
|
7224
|
-
details: import("@prisma/client/runtime/
|
7224
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
7225
7225
|
computedUntil: bigint;
|
7226
7226
|
processingStarted: bigint;
|
7227
7227
|
};
|
@@ -7258,24 +7258,24 @@ declare const app: Elysia<"", {
|
|
7258
7258
|
computeChainId: number;
|
7259
7259
|
distributionChainId: number;
|
7260
7260
|
endTimestamp: bigint;
|
7261
|
-
RewardToken: {
|
7262
|
-
symbol: string;
|
7263
|
-
address: string;
|
7264
|
-
isTest: boolean;
|
7265
|
-
};
|
7266
|
-
Opportunity: {
|
7267
|
-
name: string;
|
7268
|
-
type: string;
|
7269
|
-
identifier: string;
|
7270
|
-
};
|
7271
7261
|
CampaignStatus: {
|
7272
7262
|
campaignId: string;
|
7273
7263
|
error: string;
|
7274
7264
|
status: import("@package/databases").RunStatus;
|
7275
|
-
details: import("@prisma/client/runtime/
|
7265
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
7276
7266
|
computedUntil: bigint;
|
7277
7267
|
processingStarted: bigint;
|
7278
7268
|
}[];
|
7269
|
+
Opportunity: {
|
7270
|
+
name: string;
|
7271
|
+
type: string;
|
7272
|
+
identifier: string;
|
7273
|
+
};
|
7274
|
+
RewardToken: {
|
7275
|
+
symbol: string;
|
7276
|
+
address: string;
|
7277
|
+
isTest: boolean;
|
7278
|
+
};
|
7279
7279
|
}[];
|
7280
7280
|
422: {
|
7281
7281
|
type: "validation";
|
@@ -9023,11 +9023,11 @@ declare const app: Elysia<"", {
|
|
9023
9023
|
action: import("@package/databases").OpportunityAction;
|
9024
9024
|
type: string;
|
9025
9025
|
depositUrl: string | null;
|
9026
|
-
explorerAddress: string | null;
|
9027
|
-
howToSteps: string[];
|
9028
|
-
mainProtocolId: string | null;
|
9029
9026
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
9030
9027
|
identifier: string;
|
9028
|
+
howToSteps: string[];
|
9029
|
+
explorerAddress: string | null;
|
9030
|
+
mainProtocolId: string | null;
|
9031
9031
|
dailyRewards: number;
|
9032
9032
|
tags: string[];
|
9033
9033
|
lastCampaignCreatedAt: Date;
|
@@ -9036,18 +9036,18 @@ declare const app: Elysia<"", {
|
|
9036
9036
|
campaignId: string;
|
9037
9037
|
description: string | null;
|
9038
9038
|
id: string;
|
9039
|
-
params: import("@prisma/client/runtime/
|
9039
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
9040
9040
|
amount: string;
|
9041
9041
|
startTimestamp: bigint;
|
9042
9042
|
type: string;
|
9043
9043
|
computeChainId: number;
|
9044
9044
|
distributionChainId: number;
|
9045
9045
|
endTimestamp: bigint;
|
9046
|
-
opportunityId: string;
|
9047
|
-
creatorAddress: string;
|
9048
9046
|
distributionType: import("@package/databases").DistributionType;
|
9049
9047
|
subType: number | null;
|
9050
9048
|
rewardTokenId: string;
|
9049
|
+
opportunityId: string;
|
9050
|
+
creatorAddress: string;
|
9051
9051
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
9052
9052
|
createdAt: Date;
|
9053
9053
|
rootCampaignId: string | null;
|
@@ -9094,11 +9094,11 @@ declare const app: Elysia<"", {
|
|
9094
9094
|
action: import("@package/databases").OpportunityAction;
|
9095
9095
|
type: string;
|
9096
9096
|
depositUrl: string | null;
|
9097
|
-
explorerAddress: string | null;
|
9098
|
-
howToSteps: string[];
|
9099
|
-
mainProtocolId: string | null;
|
9100
9097
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
9101
9098
|
identifier: string;
|
9099
|
+
howToSteps: string[];
|
9100
|
+
explorerAddress: string | null;
|
9101
|
+
mainProtocolId: string | null;
|
9102
9102
|
dailyRewards: number;
|
9103
9103
|
tags: string[];
|
9104
9104
|
lastCampaignCreatedAt: Date;
|
@@ -9107,18 +9107,18 @@ declare const app: Elysia<"", {
|
|
9107
9107
|
campaignId: string;
|
9108
9108
|
description: string | null;
|
9109
9109
|
id: string;
|
9110
|
-
params: import("@prisma/client/runtime/
|
9110
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
9111
9111
|
amount: string;
|
9112
9112
|
startTimestamp: bigint;
|
9113
9113
|
type: string;
|
9114
9114
|
computeChainId: number;
|
9115
9115
|
distributionChainId: number;
|
9116
9116
|
endTimestamp: bigint;
|
9117
|
-
opportunityId: string;
|
9118
|
-
creatorAddress: string;
|
9119
9117
|
distributionType: import("@package/databases").DistributionType;
|
9120
9118
|
subType: number | null;
|
9121
9119
|
rewardTokenId: string;
|
9120
|
+
opportunityId: string;
|
9121
|
+
creatorAddress: string;
|
9122
9122
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
9123
9123
|
createdAt: Date;
|
9124
9124
|
rootCampaignId: string | null;
|
@@ -9957,6 +9957,7 @@ declare const app: Elysia<"", {
|
|
9957
9957
|
};
|
9958
9958
|
headers: unknown;
|
9959
9959
|
response: {
|
9960
|
+
[x: string]: any;
|
9960
9961
|
200: {
|
9961
9962
|
id: string;
|
9962
9963
|
recipient: string;
|
@@ -9968,8 +9969,8 @@ declare const app: Elysia<"", {
|
|
9968
9969
|
NodesSources: {
|
9969
9970
|
id: string;
|
9970
9971
|
chainId: number;
|
9971
|
-
lastFetchedBlockNumber: number;
|
9972
9972
|
source: string;
|
9973
|
+
lastFetchedBlockNumber: number;
|
9973
9974
|
topics: string[];
|
9974
9975
|
};
|
9975
9976
|
}[];
|