@merkl/api 1.0.67 → 1.0.69
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 +430 -418
- package/dist/src/engine/implementations/Erc20/subTypes/index.d.ts +2 -1
- package/dist/src/index.d.ts +215 -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 +180 -180
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +50 -50
- 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 +1 -1
- package/dist/src/modules/v4/node/node.repository.d.ts +2 -2
- package/dist/src/modules/v4/node/node.service.d.ts +2 -2
- 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.model.d.ts +19 -1
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +25 -2
- 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 +212 -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.controller.d.ts +3 -0
- package/dist/src/modules/v4/uniswap/uniswap.repository.d.ts +2 -2
- package/dist/src/modules/v4/user/user.controller.d.ts +11 -11
- package/dist/src/routes/v3/router.d.ts +3 -0
- package/dist/src/routes/v3/uniswapv4.d.ts +3 -0
- package/dist/src/utils/providers.d.ts +2 -0
- 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
@@ -1527,6 +1527,9 @@ declare const app: Elysia<"", {
|
|
1527
1527
|
747474?: {
|
1528
1528
|
[poolId: string]: import("@angleprotocol/sdk/ts").UniswapV4PoolType;
|
1529
1529
|
} | undefined;
|
1530
|
+
151?: {
|
1531
|
+
[poolId: string]: import("@angleprotocol/sdk/ts").UniswapV4PoolType;
|
1532
|
+
} | undefined;
|
1530
1533
|
} | null;
|
1531
1534
|
};
|
1532
1535
|
};
|
@@ -1603,16 +1606,16 @@ declare const app: Elysia<"", {
|
|
1603
1606
|
tokenSymbol?: string | undefined;
|
1604
1607
|
type?: string | undefined;
|
1605
1608
|
endTimestamp?: string | undefined;
|
1609
|
+
subType?: number | undefined;
|
1606
1610
|
opportunityId?: string | undefined;
|
1607
1611
|
creatorAddress?: string | undefined;
|
1608
|
-
mainProtocolId?: string | undefined;
|
1609
|
-
subType?: number | undefined;
|
1610
1612
|
rootCampaignId?: string | undefined;
|
1611
1613
|
parentCampaignId?: string | undefined;
|
1614
|
+
mainProtocolId?: string | undefined;
|
1612
1615
|
creatorId?: string | undefined;
|
1613
|
-
mainParameter?: string | undefined;
|
1614
1616
|
test?: boolean | undefined;
|
1615
1617
|
page?: number | undefined;
|
1618
|
+
mainParameter?: string | undefined;
|
1616
1619
|
creatorTag?: string | undefined;
|
1617
1620
|
distributionChainIds?: number[] | undefined;
|
1618
1621
|
types?: string[] | undefined;
|
@@ -1635,8 +1638,6 @@ declare const app: Elysia<"", {
|
|
1635
1638
|
tags: string[];
|
1636
1639
|
} | null | undefined;
|
1637
1640
|
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
1641
|
aprRecord?: {
|
1641
1642
|
timestamp: string | bigint;
|
1642
1643
|
cumulated: number;
|
@@ -1647,6 +1648,8 @@ declare const app: Elysia<"", {
|
|
1647
1648
|
identifier: string;
|
1648
1649
|
}[];
|
1649
1650
|
} | undefined;
|
1651
|
+
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;
|
1652
|
+
explorerAddress?: string | undefined;
|
1650
1653
|
tvlRecord?: {
|
1651
1654
|
timestamp: string | bigint;
|
1652
1655
|
total: number;
|
@@ -1710,9 +1713,6 @@ declare const app: Elysia<"", {
|
|
1710
1713
|
creatorId?: string | null | undefined;
|
1711
1714
|
address: string;
|
1712
1715
|
} | 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
1716
|
campaignStatus?: {
|
1717
1717
|
error?: string | undefined;
|
1718
1718
|
details?: any;
|
@@ -1720,6 +1720,9 @@ declare const app: Elysia<"", {
|
|
1720
1720
|
computedUntil: string | number;
|
1721
1721
|
processingStarted: string | number;
|
1722
1722
|
} | undefined;
|
1723
|
+
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;
|
1724
|
+
rootCampaignId?: string | undefined;
|
1725
|
+
parentCampaignId?: string | undefined;
|
1723
1726
|
distributionChain?: {
|
1724
1727
|
explorers?: {
|
1725
1728
|
chainId: number;
|
@@ -1754,9 +1757,6 @@ declare const app: Elysia<"", {
|
|
1754
1757
|
computeChainId: number;
|
1755
1758
|
distributionChainId: number;
|
1756
1759
|
endTimestamp: string | number;
|
1757
|
-
creatorAddress: string;
|
1758
|
-
subType: number | null;
|
1759
|
-
createdAt: string;
|
1760
1760
|
chain: {
|
1761
1761
|
explorers?: {
|
1762
1762
|
chainId: number;
|
@@ -1767,14 +1767,12 @@ declare const app: Elysia<"", {
|
|
1767
1767
|
id: number;
|
1768
1768
|
icon: string;
|
1769
1769
|
};
|
1770
|
+
subType: number | null;
|
1771
|
+
creatorAddress: string;
|
1772
|
+
createdAt: string;
|
1770
1773
|
}[];
|
1771
1774
|
action: string;
|
1772
1775
|
type: string;
|
1773
|
-
howToSteps: string[];
|
1774
|
-
identifier: string;
|
1775
|
-
dailyRewards: number;
|
1776
|
-
tags: string[];
|
1777
|
-
lastCampaignCreatedAt: number;
|
1778
1776
|
chain: {
|
1779
1777
|
explorers?: {
|
1780
1778
|
chainId: number;
|
@@ -1785,6 +1783,11 @@ declare const app: Elysia<"", {
|
|
1785
1783
|
id: number;
|
1786
1784
|
icon: string;
|
1787
1785
|
};
|
1786
|
+
identifier: string;
|
1787
|
+
howToSteps: string[];
|
1788
|
+
dailyRewards: number;
|
1789
|
+
tags: string[];
|
1790
|
+
lastCampaignCreatedAt: number;
|
1788
1791
|
}[];
|
1789
1792
|
readonly 500: {
|
1790
1793
|
info: string;
|
@@ -1837,8 +1840,6 @@ declare const app: Elysia<"", {
|
|
1837
1840
|
tags: string[];
|
1838
1841
|
} | null | undefined;
|
1839
1842
|
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
1843
|
aprRecord?: {
|
1843
1844
|
timestamp: string | bigint;
|
1844
1845
|
cumulated: number;
|
@@ -1849,6 +1850,8 @@ declare const app: Elysia<"", {
|
|
1849
1850
|
identifier: string;
|
1850
1851
|
}[];
|
1851
1852
|
} | undefined;
|
1853
|
+
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;
|
1854
|
+
explorerAddress?: string | undefined;
|
1852
1855
|
tvlRecord?: {
|
1853
1856
|
timestamp: string | bigint;
|
1854
1857
|
total: number;
|
@@ -1907,11 +1910,6 @@ declare const app: Elysia<"", {
|
|
1907
1910
|
chainId: number;
|
1908
1911
|
action: string;
|
1909
1912
|
type: string;
|
1910
|
-
howToSteps: string[];
|
1911
|
-
identifier: string;
|
1912
|
-
dailyRewards: number;
|
1913
|
-
tags: string[];
|
1914
|
-
lastCampaignCreatedAt: number;
|
1915
1913
|
chain: {
|
1916
1914
|
explorers?: {
|
1917
1915
|
chainId: number;
|
@@ -1922,6 +1920,11 @@ declare const app: Elysia<"", {
|
|
1922
1920
|
id: number;
|
1923
1921
|
icon: string;
|
1924
1922
|
};
|
1923
|
+
identifier: string;
|
1924
|
+
howToSteps: string[];
|
1925
|
+
dailyRewards: number;
|
1926
|
+
tags: string[];
|
1927
|
+
lastCampaignCreatedAt: number;
|
1925
1928
|
};
|
1926
1929
|
readonly 500: {
|
1927
1930
|
info: string;
|
@@ -1975,8 +1978,6 @@ declare const app: Elysia<"", {
|
|
1975
1978
|
tags: string[];
|
1976
1979
|
} | null | undefined;
|
1977
1980
|
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
1981
|
aprRecord?: {
|
1981
1982
|
timestamp: string | bigint;
|
1982
1983
|
cumulated: number;
|
@@ -1987,6 +1988,8 @@ declare const app: Elysia<"", {
|
|
1987
1988
|
identifier: string;
|
1988
1989
|
}[];
|
1989
1990
|
} | undefined;
|
1991
|
+
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;
|
1992
|
+
explorerAddress?: string | undefined;
|
1990
1993
|
tvlRecord?: {
|
1991
1994
|
timestamp: string | bigint;
|
1992
1995
|
total: number;
|
@@ -2050,9 +2053,6 @@ declare const app: Elysia<"", {
|
|
2050
2053
|
creatorId?: string | null | undefined;
|
2051
2054
|
address: string;
|
2052
2055
|
} | 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
2056
|
campaignStatus?: {
|
2057
2057
|
error?: string | undefined;
|
2058
2058
|
details?: any;
|
@@ -2060,6 +2060,9 @@ declare const app: Elysia<"", {
|
|
2060
2060
|
computedUntil: string | number;
|
2061
2061
|
processingStarted: string | number;
|
2062
2062
|
} | undefined;
|
2063
|
+
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;
|
2064
|
+
rootCampaignId?: string | undefined;
|
2065
|
+
parentCampaignId?: string | undefined;
|
2063
2066
|
distributionChain?: {
|
2064
2067
|
explorers?: {
|
2065
2068
|
chainId: number;
|
@@ -2094,9 +2097,6 @@ declare const app: Elysia<"", {
|
|
2094
2097
|
computeChainId: number;
|
2095
2098
|
distributionChainId: number;
|
2096
2099
|
endTimestamp: string | number;
|
2097
|
-
creatorAddress: string;
|
2098
|
-
subType: number | null;
|
2099
|
-
createdAt: string;
|
2100
2100
|
chain: {
|
2101
2101
|
explorers?: {
|
2102
2102
|
chainId: number;
|
@@ -2107,14 +2107,12 @@ declare const app: Elysia<"", {
|
|
2107
2107
|
id: number;
|
2108
2108
|
icon: string;
|
2109
2109
|
};
|
2110
|
+
subType: number | null;
|
2111
|
+
creatorAddress: string;
|
2112
|
+
createdAt: string;
|
2110
2113
|
}[];
|
2111
2114
|
action: string;
|
2112
2115
|
type: string;
|
2113
|
-
howToSteps: string[];
|
2114
|
-
identifier: string;
|
2115
|
-
dailyRewards: number;
|
2116
|
-
tags: string[];
|
2117
|
-
lastCampaignCreatedAt: number;
|
2118
2116
|
chain: {
|
2119
2117
|
explorers?: {
|
2120
2118
|
chainId: number;
|
@@ -2125,6 +2123,11 @@ declare const app: Elysia<"", {
|
|
2125
2123
|
id: number;
|
2126
2124
|
icon: string;
|
2127
2125
|
};
|
2126
|
+
identifier: string;
|
2127
|
+
howToSteps: string[];
|
2128
|
+
dailyRewards: number;
|
2129
|
+
tags: string[];
|
2130
|
+
lastCampaignCreatedAt: number;
|
2128
2131
|
};
|
2129
2132
|
readonly 500: {
|
2130
2133
|
info: string;
|
@@ -2169,8 +2172,8 @@ declare const app: Elysia<"", {
|
|
2169
2172
|
type?: string | undefined;
|
2170
2173
|
search?: string | undefined;
|
2171
2174
|
creatorAddress?: string | undefined;
|
2172
|
-
mainProtocolId?: string | undefined;
|
2173
2175
|
identifier?: string | undefined;
|
2176
|
+
mainProtocolId?: string | undefined;
|
2174
2177
|
tags?: string | undefined;
|
2175
2178
|
test?: boolean | undefined;
|
2176
2179
|
page?: number | undefined;
|
@@ -2196,8 +2199,6 @@ declare const app: Elysia<"", {
|
|
2196
2199
|
tags: string[];
|
2197
2200
|
} | null | undefined;
|
2198
2201
|
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
2202
|
aprRecord?: {
|
2202
2203
|
timestamp: string | bigint;
|
2203
2204
|
cumulated: number;
|
@@ -2208,6 +2209,8 @@ declare const app: Elysia<"", {
|
|
2208
2209
|
identifier: string;
|
2209
2210
|
}[];
|
2210
2211
|
} | undefined;
|
2212
|
+
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;
|
2213
|
+
explorerAddress?: string | undefined;
|
2211
2214
|
tvlRecord?: {
|
2212
2215
|
timestamp: string | bigint;
|
2213
2216
|
total: number;
|
@@ -2266,11 +2269,6 @@ declare const app: Elysia<"", {
|
|
2266
2269
|
chainId: number;
|
2267
2270
|
action: string;
|
2268
2271
|
type: string;
|
2269
|
-
howToSteps: string[];
|
2270
|
-
identifier: string;
|
2271
|
-
dailyRewards: number;
|
2272
|
-
tags: string[];
|
2273
|
-
lastCampaignCreatedAt: number;
|
2274
2272
|
chain: {
|
2275
2273
|
explorers?: {
|
2276
2274
|
chainId: number;
|
@@ -2281,6 +2279,11 @@ declare const app: Elysia<"", {
|
|
2281
2279
|
id: number;
|
2282
2280
|
icon: string;
|
2283
2281
|
};
|
2282
|
+
identifier: string;
|
2283
|
+
howToSteps: string[];
|
2284
|
+
dailyRewards: number;
|
2285
|
+
tags: string[];
|
2286
|
+
lastCampaignCreatedAt: number;
|
2284
2287
|
} | null)[];
|
2285
2288
|
422: {
|
2286
2289
|
type: "validation";
|
@@ -2315,8 +2318,8 @@ declare const app: Elysia<"", {
|
|
2315
2318
|
type?: string | undefined;
|
2316
2319
|
search?: string | undefined;
|
2317
2320
|
creatorAddress?: string | undefined;
|
2318
|
-
mainProtocolId?: string | undefined;
|
2319
2321
|
identifier?: string | undefined;
|
2322
|
+
mainProtocolId?: string | undefined;
|
2320
2323
|
tags?: string | undefined;
|
2321
2324
|
test?: boolean | undefined;
|
2322
2325
|
page?: number | undefined;
|
@@ -2365,8 +2368,8 @@ declare const app: Elysia<"", {
|
|
2365
2368
|
type?: string | undefined;
|
2366
2369
|
search?: string | undefined;
|
2367
2370
|
creatorAddress?: string | undefined;
|
2368
|
-
mainProtocolId?: string | undefined;
|
2369
2371
|
identifier?: string | undefined;
|
2372
|
+
mainProtocolId?: string | undefined;
|
2370
2373
|
tags?: string | undefined;
|
2371
2374
|
test?: boolean | undefined;
|
2372
2375
|
page?: number | undefined;
|
@@ -2425,8 +2428,8 @@ declare const app: Elysia<"", {
|
|
2425
2428
|
type?: string | undefined;
|
2426
2429
|
search?: string | undefined;
|
2427
2430
|
creatorAddress?: string | undefined;
|
2428
|
-
mainProtocolId?: string | undefined;
|
2429
2431
|
identifier?: string | undefined;
|
2432
|
+
mainProtocolId?: string | undefined;
|
2430
2433
|
tags?: string | undefined;
|
2431
2434
|
test?: boolean | undefined;
|
2432
2435
|
page?: number | undefined;
|
@@ -2487,8 +2490,8 @@ declare const app: Elysia<"", {
|
|
2487
2490
|
type?: string | undefined;
|
2488
2491
|
search?: string | undefined;
|
2489
2492
|
creatorAddress?: string | undefined;
|
2490
|
-
mainProtocolId?: string | undefined;
|
2491
2493
|
identifier?: string | undefined;
|
2494
|
+
mainProtocolId?: string | undefined;
|
2492
2495
|
tags?: string | undefined;
|
2493
2496
|
test?: boolean | undefined;
|
2494
2497
|
page?: number | undefined;
|
@@ -2543,8 +2546,8 @@ declare const app: Elysia<"", {
|
|
2543
2546
|
type?: string | undefined;
|
2544
2547
|
search?: string | undefined;
|
2545
2548
|
creatorAddress?: string | undefined;
|
2546
|
-
mainProtocolId?: string | undefined;
|
2547
2549
|
identifier?: string | undefined;
|
2550
|
+
mainProtocolId?: string | undefined;
|
2548
2551
|
tags?: string | undefined;
|
2549
2552
|
test?: boolean | undefined;
|
2550
2553
|
page?: number | undefined;
|
@@ -2600,8 +2603,8 @@ declare const app: Elysia<"", {
|
|
2600
2603
|
type?: string | undefined;
|
2601
2604
|
search?: string | undefined;
|
2602
2605
|
creatorAddress?: string | undefined;
|
2603
|
-
mainProtocolId?: string | undefined;
|
2604
2606
|
identifier?: string | undefined;
|
2607
|
+
mainProtocolId?: string | undefined;
|
2605
2608
|
tags?: string | undefined;
|
2606
2609
|
test?: boolean | undefined;
|
2607
2610
|
page?: number | undefined;
|
@@ -2679,6 +2682,14 @@ declare const app: Elysia<"", {
|
|
2679
2682
|
explorerAddress: string | undefined;
|
2680
2683
|
tags: string[];
|
2681
2684
|
} | {
|
2685
|
+
Protocols: {
|
2686
|
+
name: string;
|
2687
|
+
description: string;
|
2688
|
+
id: string;
|
2689
|
+
url: string;
|
2690
|
+
icon: string;
|
2691
|
+
tags: string[];
|
2692
|
+
}[];
|
2682
2693
|
Tokens: {
|
2683
2694
|
symbol: string;
|
2684
2695
|
name: string | null;
|
@@ -2695,14 +2706,6 @@ declare const app: Elysia<"", {
|
|
2695
2706
|
verified: boolean;
|
2696
2707
|
displaySymbol: string;
|
2697
2708
|
}[];
|
2698
|
-
Protocols: {
|
2699
|
-
name: string;
|
2700
|
-
description: string;
|
2701
|
-
id: string;
|
2702
|
-
url: string;
|
2703
|
-
icon: string;
|
2704
|
-
tags: string[];
|
2705
|
-
}[];
|
2706
2709
|
name: string;
|
2707
2710
|
apr: number;
|
2708
2711
|
tvl: number;
|
@@ -2713,11 +2716,11 @@ declare const app: Elysia<"", {
|
|
2713
2716
|
action: import("@package/databases").OpportunityAction;
|
2714
2717
|
type: string;
|
2715
2718
|
depositUrl: string | null;
|
2716
|
-
explorerAddress: string | null;
|
2717
|
-
howToSteps: string[];
|
2718
|
-
mainProtocolId: string | null;
|
2719
2719
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
2720
2720
|
identifier: string;
|
2721
|
+
howToSteps: string[];
|
2722
|
+
explorerAddress: string | null;
|
2723
|
+
mainProtocolId: string | null;
|
2721
2724
|
dailyRewards: number;
|
2722
2725
|
tags: string[];
|
2723
2726
|
lastCampaignCreatedAt: Date;
|
@@ -2759,11 +2762,11 @@ declare const app: Elysia<"", {
|
|
2759
2762
|
action: import("@package/databases").OpportunityAction;
|
2760
2763
|
type: string;
|
2761
2764
|
depositUrl: string | null;
|
2762
|
-
explorerAddress: string | null;
|
2763
|
-
howToSteps: string[];
|
2764
|
-
mainProtocolId: string | null;
|
2765
2765
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
2766
2766
|
identifier: string;
|
2767
|
+
howToSteps: string[];
|
2768
|
+
explorerAddress: string | null;
|
2769
|
+
mainProtocolId: string | null;
|
2767
2770
|
dailyRewards: number;
|
2768
2771
|
tags: string[];
|
2769
2772
|
lastCampaignCreatedAt: Date;
|
@@ -2791,8 +2794,8 @@ declare const app: Elysia<"", {
|
|
2791
2794
|
description?: string | undefined;
|
2792
2795
|
action?: "POOL" | "INVALID" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "SWAP" | undefined;
|
2793
2796
|
depositUrl?: string | undefined;
|
2794
|
-
explorerAddress?: string | undefined;
|
2795
2797
|
howToSteps?: string[] | undefined;
|
2798
|
+
explorerAddress?: string | undefined;
|
2796
2799
|
mainProtocolId?: string | undefined;
|
2797
2800
|
};
|
2798
2801
|
params: {
|
@@ -2812,11 +2815,11 @@ declare const app: Elysia<"", {
|
|
2812
2815
|
action: import("@package/databases").OpportunityAction;
|
2813
2816
|
type: string;
|
2814
2817
|
depositUrl: string | null;
|
2815
|
-
explorerAddress: string | null;
|
2816
|
-
howToSteps: string[];
|
2817
|
-
mainProtocolId: string | null;
|
2818
2818
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
2819
2819
|
identifier: string;
|
2820
|
+
howToSteps: string[];
|
2821
|
+
explorerAddress: string | null;
|
2822
|
+
mainProtocolId: string | null;
|
2820
2823
|
dailyRewards: number;
|
2821
2824
|
tags: string[];
|
2822
2825
|
lastCampaignCreatedAt: Date;
|
@@ -2840,7 +2843,7 @@ declare const app: Elysia<"", {
|
|
2840
2843
|
":id": {
|
2841
2844
|
override: {
|
2842
2845
|
delete: {
|
2843
|
-
body: ("name" | "description" | "action" | "depositUrl" | "
|
2846
|
+
body: ("name" | "description" | "action" | "depositUrl" | "howToSteps" | "explorerAddress" | "mainProtocolId")[];
|
2844
2847
|
params: {
|
2845
2848
|
id: string;
|
2846
2849
|
};
|
@@ -2880,6 +2883,14 @@ declare const app: Elysia<"", {
|
|
2880
2883
|
explorerAddress: string | undefined;
|
2881
2884
|
tags: string[];
|
2882
2885
|
} | {
|
2886
|
+
Protocols: {
|
2887
|
+
name: string;
|
2888
|
+
description: string;
|
2889
|
+
id: string;
|
2890
|
+
url: string;
|
2891
|
+
icon: string;
|
2892
|
+
tags: string[];
|
2893
|
+
}[];
|
2883
2894
|
Tokens: {
|
2884
2895
|
symbol: string;
|
2885
2896
|
name: string | null;
|
@@ -2896,14 +2907,6 @@ declare const app: Elysia<"", {
|
|
2896
2907
|
verified: boolean;
|
2897
2908
|
displaySymbol: string;
|
2898
2909
|
}[];
|
2899
|
-
Protocols: {
|
2900
|
-
name: string;
|
2901
|
-
description: string;
|
2902
|
-
id: string;
|
2903
|
-
url: string;
|
2904
|
-
icon: string;
|
2905
|
-
tags: string[];
|
2906
|
-
}[];
|
2907
2910
|
name: string;
|
2908
2911
|
apr: number;
|
2909
2912
|
tvl: number;
|
@@ -2914,11 +2917,11 @@ declare const app: Elysia<"", {
|
|
2914
2917
|
action: import("@package/databases").OpportunityAction;
|
2915
2918
|
type: string;
|
2916
2919
|
depositUrl: string | null;
|
2917
|
-
explorerAddress: string | null;
|
2918
|
-
howToSteps: string[];
|
2919
|
-
mainProtocolId: string | null;
|
2920
2920
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
2921
2921
|
identifier: string;
|
2922
|
+
howToSteps: string[];
|
2923
|
+
explorerAddress: string | null;
|
2924
|
+
mainProtocolId: string | null;
|
2922
2925
|
dailyRewards: number;
|
2923
2926
|
tags: string[];
|
2924
2927
|
lastCampaignCreatedAt: Date;
|
@@ -2971,18 +2974,18 @@ declare const app: Elysia<"", {
|
|
2971
2974
|
campaignId: string;
|
2972
2975
|
description: string | null;
|
2973
2976
|
id: string;
|
2974
|
-
params: import("@prisma/client/runtime/
|
2977
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
2975
2978
|
amount: string;
|
2976
2979
|
startTimestamp: bigint;
|
2977
2980
|
type: string;
|
2978
2981
|
computeChainId: number;
|
2979
2982
|
distributionChainId: number;
|
2980
2983
|
endTimestamp: bigint;
|
2981
|
-
opportunityId: string;
|
2982
|
-
creatorAddress: string;
|
2983
2984
|
distributionType: import("@package/databases").DistributionType;
|
2984
2985
|
subType: number | null;
|
2985
2986
|
rewardTokenId: string;
|
2987
|
+
opportunityId: string;
|
2988
|
+
creatorAddress: string;
|
2986
2989
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
2987
2990
|
createdAt: Date;
|
2988
2991
|
rootCampaignId: string | null;
|
@@ -3020,6 +3023,14 @@ declare const app: Elysia<"", {
|
|
3020
3023
|
explorerAddress: string | undefined;
|
3021
3024
|
tags: string[];
|
3022
3025
|
} | {
|
3026
|
+
Protocols: {
|
3027
|
+
name: string;
|
3028
|
+
description: string;
|
3029
|
+
id: string;
|
3030
|
+
url: string;
|
3031
|
+
icon: string;
|
3032
|
+
tags: string[];
|
3033
|
+
}[];
|
3023
3034
|
Tokens: {
|
3024
3035
|
symbol: string;
|
3025
3036
|
name: string | null;
|
@@ -3036,14 +3047,6 @@ declare const app: Elysia<"", {
|
|
3036
3047
|
verified: boolean;
|
3037
3048
|
displaySymbol: string;
|
3038
3049
|
}[];
|
3039
|
-
Protocols: {
|
3040
|
-
name: string;
|
3041
|
-
description: string;
|
3042
|
-
id: string;
|
3043
|
-
url: string;
|
3044
|
-
icon: string;
|
3045
|
-
tags: string[];
|
3046
|
-
}[];
|
3047
3050
|
name: string;
|
3048
3051
|
apr: number;
|
3049
3052
|
tvl: number;
|
@@ -3054,11 +3057,11 @@ declare const app: Elysia<"", {
|
|
3054
3057
|
action: import("@package/databases").OpportunityAction;
|
3055
3058
|
type: string;
|
3056
3059
|
depositUrl: string | null;
|
3057
|
-
explorerAddress: string | null;
|
3058
|
-
howToSteps: string[];
|
3059
|
-
mainProtocolId: string | null;
|
3060
3060
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
3061
3061
|
identifier: string;
|
3062
|
+
howToSteps: string[];
|
3063
|
+
explorerAddress: string | null;
|
3064
|
+
mainProtocolId: string | null;
|
3062
3065
|
dailyRewards: number;
|
3063
3066
|
tags: string[];
|
3064
3067
|
lastCampaignCreatedAt: Date;
|
@@ -3094,9 +3097,6 @@ declare const app: Elysia<"", {
|
|
3094
3097
|
creatorId?: string | null | undefined;
|
3095
3098
|
address: string;
|
3096
3099
|
} | 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
3100
|
campaignStatus?: {
|
3101
3101
|
error?: string | undefined;
|
3102
3102
|
details?: any;
|
@@ -3104,6 +3104,9 @@ declare const app: Elysia<"", {
|
|
3104
3104
|
computedUntil: string | number;
|
3105
3105
|
processingStarted: string | number;
|
3106
3106
|
} | undefined;
|
3107
|
+
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;
|
3108
|
+
rootCampaignId?: string | undefined;
|
3109
|
+
parentCampaignId?: string | undefined;
|
3107
3110
|
distributionChain?: {
|
3108
3111
|
explorers?: {
|
3109
3112
|
chainId: number;
|
@@ -3138,9 +3141,6 @@ declare const app: Elysia<"", {
|
|
3138
3141
|
computeChainId: number;
|
3139
3142
|
distributionChainId: number;
|
3140
3143
|
endTimestamp: string | number;
|
3141
|
-
creatorAddress: string;
|
3142
|
-
subType: number | null;
|
3143
|
-
createdAt: string;
|
3144
3144
|
chain: {
|
3145
3145
|
explorers?: {
|
3146
3146
|
chainId: number;
|
@@ -3151,6 +3151,9 @@ declare const app: Elysia<"", {
|
|
3151
3151
|
id: number;
|
3152
3152
|
icon: string;
|
3153
3153
|
};
|
3154
|
+
subType: number | null;
|
3155
|
+
creatorAddress: string;
|
3156
|
+
createdAt: string;
|
3154
3157
|
};
|
3155
3158
|
422: {
|
3156
3159
|
type: "validation";
|
@@ -3373,16 +3376,16 @@ declare const app: Elysia<"", {
|
|
3373
3376
|
tokenSymbol?: string | undefined;
|
3374
3377
|
type?: string | undefined;
|
3375
3378
|
endTimestamp?: string | undefined;
|
3379
|
+
subType?: number | undefined;
|
3376
3380
|
opportunityId?: string | undefined;
|
3377
3381
|
creatorAddress?: string | undefined;
|
3378
|
-
mainProtocolId?: string | undefined;
|
3379
|
-
subType?: number | undefined;
|
3380
3382
|
rootCampaignId?: string | undefined;
|
3381
3383
|
parentCampaignId?: string | undefined;
|
3384
|
+
mainProtocolId?: string | undefined;
|
3382
3385
|
creatorId?: string | undefined;
|
3383
|
-
mainParameter?: string | undefined;
|
3384
3386
|
test?: boolean | undefined;
|
3385
3387
|
page?: number | undefined;
|
3388
|
+
mainParameter?: string | undefined;
|
3386
3389
|
creatorTag?: string | undefined;
|
3387
3390
|
distributionChainIds?: number[] | undefined;
|
3388
3391
|
types?: string[] | undefined;
|
@@ -3399,9 +3402,6 @@ declare const app: Elysia<"", {
|
|
3399
3402
|
creatorId?: string | null | undefined;
|
3400
3403
|
address: string;
|
3401
3404
|
} | 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
3405
|
campaignStatus?: {
|
3406
3406
|
error?: string | undefined;
|
3407
3407
|
details?: any;
|
@@ -3409,6 +3409,9 @@ declare const app: Elysia<"", {
|
|
3409
3409
|
computedUntil: string | number;
|
3410
3410
|
processingStarted: string | number;
|
3411
3411
|
} | undefined;
|
3412
|
+
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;
|
3413
|
+
rootCampaignId?: string | undefined;
|
3414
|
+
parentCampaignId?: string | undefined;
|
3412
3415
|
distributionChain?: {
|
3413
3416
|
explorers?: {
|
3414
3417
|
chainId: number;
|
@@ -3443,9 +3446,6 @@ declare const app: Elysia<"", {
|
|
3443
3446
|
computeChainId: number;
|
3444
3447
|
distributionChainId: number;
|
3445
3448
|
endTimestamp: string | number;
|
3446
|
-
creatorAddress: string;
|
3447
|
-
subType: number | null;
|
3448
|
-
createdAt: string;
|
3449
3449
|
chain: {
|
3450
3450
|
explorers?: {
|
3451
3451
|
chainId: number;
|
@@ -3456,6 +3456,9 @@ declare const app: Elysia<"", {
|
|
3456
3456
|
id: number;
|
3457
3457
|
icon: string;
|
3458
3458
|
};
|
3459
|
+
subType: number | null;
|
3460
|
+
creatorAddress: string;
|
3461
|
+
createdAt: string;
|
3459
3462
|
}[];
|
3460
3463
|
422: {
|
3461
3464
|
type: "validation";
|
@@ -3487,16 +3490,16 @@ declare const app: Elysia<"", {
|
|
3487
3490
|
tokenSymbol?: string | undefined;
|
3488
3491
|
type?: string | undefined;
|
3489
3492
|
endTimestamp?: string | undefined;
|
3493
|
+
subType?: number | undefined;
|
3490
3494
|
opportunityId?: string | undefined;
|
3491
3495
|
creatorAddress?: string | undefined;
|
3492
|
-
mainProtocolId?: string | undefined;
|
3493
|
-
subType?: number | undefined;
|
3494
3496
|
rootCampaignId?: string | undefined;
|
3495
3497
|
parentCampaignId?: string | undefined;
|
3498
|
+
mainProtocolId?: string | undefined;
|
3496
3499
|
creatorId?: string | undefined;
|
3497
|
-
mainParameter?: string | undefined;
|
3498
3500
|
test?: boolean | undefined;
|
3499
3501
|
page?: number | undefined;
|
3502
|
+
mainParameter?: string | undefined;
|
3500
3503
|
creatorTag?: string | undefined;
|
3501
3504
|
distributionChainIds?: number[] | undefined;
|
3502
3505
|
types?: string[] | undefined;
|
@@ -3538,16 +3541,16 @@ declare const app: Elysia<"", {
|
|
3538
3541
|
tokenSymbol?: string | undefined;
|
3539
3542
|
type?: string | undefined;
|
3540
3543
|
endTimestamp?: string | undefined;
|
3544
|
+
subType?: number | undefined;
|
3541
3545
|
opportunityId?: string | undefined;
|
3542
3546
|
creatorAddress?: string | undefined;
|
3543
|
-
mainProtocolId?: string | undefined;
|
3544
|
-
subType?: number | undefined;
|
3545
3547
|
rootCampaignId?: string | undefined;
|
3546
3548
|
parentCampaignId?: string | undefined;
|
3549
|
+
mainProtocolId?: string | undefined;
|
3547
3550
|
creatorId?: string | undefined;
|
3548
|
-
mainParameter?: string | undefined;
|
3549
3551
|
test?: boolean | undefined;
|
3550
3552
|
page?: number | undefined;
|
3553
|
+
mainParameter?: string | undefined;
|
3551
3554
|
creatorTag?: string | undefined;
|
3552
3555
|
distributionChainIds?: number[] | undefined;
|
3553
3556
|
types?: string[] | undefined;
|
@@ -3594,16 +3597,16 @@ declare const app: Elysia<"", {
|
|
3594
3597
|
tokenSymbol?: string | undefined;
|
3595
3598
|
type?: string | undefined;
|
3596
3599
|
endTimestamp?: string | undefined;
|
3600
|
+
subType?: number | undefined;
|
3597
3601
|
opportunityId?: string | undefined;
|
3598
3602
|
creatorAddress?: string | undefined;
|
3599
|
-
mainProtocolId?: string | undefined;
|
3600
|
-
subType?: number | undefined;
|
3601
3603
|
rootCampaignId?: string | undefined;
|
3602
3604
|
parentCampaignId?: string | undefined;
|
3605
|
+
mainProtocolId?: string | undefined;
|
3603
3606
|
creatorId?: string | undefined;
|
3604
|
-
mainParameter?: string | undefined;
|
3605
3607
|
test?: boolean | undefined;
|
3606
3608
|
page?: number | undefined;
|
3609
|
+
mainParameter?: string | undefined;
|
3607
3610
|
creatorTag?: string | undefined;
|
3608
3611
|
distributionChainIds?: number[] | undefined;
|
3609
3612
|
types?: string[] | undefined;
|
@@ -3651,16 +3654,16 @@ declare const app: Elysia<"", {
|
|
3651
3654
|
tokenSymbol?: string | undefined;
|
3652
3655
|
type?: string | undefined;
|
3653
3656
|
endTimestamp?: string | undefined;
|
3657
|
+
subType?: number | undefined;
|
3654
3658
|
opportunityId?: string | undefined;
|
3655
3659
|
creatorAddress?: string | undefined;
|
3656
|
-
mainProtocolId?: string | undefined;
|
3657
|
-
subType?: number | undefined;
|
3658
3660
|
rootCampaignId?: string | undefined;
|
3659
3661
|
parentCampaignId?: string | undefined;
|
3662
|
+
mainProtocolId?: string | undefined;
|
3660
3663
|
creatorId?: string | undefined;
|
3661
|
-
mainParameter?: string | undefined;
|
3662
3664
|
test?: boolean | undefined;
|
3663
3665
|
page?: number | undefined;
|
3666
|
+
mainParameter?: string | undefined;
|
3664
3667
|
creatorTag?: string | undefined;
|
3665
3668
|
distributionChainIds?: number[] | undefined;
|
3666
3669
|
types?: string[] | undefined;
|
@@ -3935,8 +3938,8 @@ declare const app: Elysia<"", {
|
|
3935
3938
|
campaignId?: string | undefined;
|
3936
3939
|
id?: string | undefined;
|
3937
3940
|
amount?: string | undefined;
|
3938
|
-
creatorAddress?: string | undefined;
|
3939
3941
|
subType?: number | undefined;
|
3942
|
+
creatorAddress?: string | undefined;
|
3940
3943
|
rewardToken: string;
|
3941
3944
|
params: any;
|
3942
3945
|
startTimestamp: number;
|
@@ -3973,8 +3976,8 @@ declare const app: Elysia<"", {
|
|
3973
3976
|
campaignId?: string | undefined;
|
3974
3977
|
id?: string | undefined;
|
3975
3978
|
amount?: string | undefined;
|
3976
|
-
creatorAddress?: string | undefined;
|
3977
3979
|
subType?: number | undefined;
|
3980
|
+
creatorAddress?: string | undefined;
|
3978
3981
|
rewardToken: string;
|
3979
3982
|
params: any;
|
3980
3983
|
startTimestamp: number;
|
@@ -3993,18 +3996,18 @@ declare const app: Elysia<"", {
|
|
3993
3996
|
campaignId: string;
|
3994
3997
|
description: string | null;
|
3995
3998
|
id: string;
|
3996
|
-
params: import("@prisma/client/runtime/
|
3999
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
3997
4000
|
amount: string;
|
3998
4001
|
startTimestamp: bigint;
|
3999
4002
|
type: string;
|
4000
4003
|
computeChainId: number;
|
4001
4004
|
distributionChainId: number;
|
4002
4005
|
endTimestamp: bigint;
|
4003
|
-
opportunityId: string;
|
4004
|
-
creatorAddress: string;
|
4005
4006
|
distributionType: import("@package/databases").DistributionType;
|
4006
4007
|
subType: number | null;
|
4007
4008
|
rewardTokenId: string;
|
4009
|
+
opportunityId: string;
|
4010
|
+
creatorAddress: string;
|
4008
4011
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
4009
4012
|
createdAt: Date;
|
4010
4013
|
rootCampaignId: string | null;
|
@@ -4042,6 +4045,14 @@ declare const app: Elysia<"", {
|
|
4042
4045
|
explorerAddress: string | undefined;
|
4043
4046
|
tags: string[];
|
4044
4047
|
} | {
|
4048
|
+
Protocols: {
|
4049
|
+
name: string;
|
4050
|
+
description: string;
|
4051
|
+
id: string;
|
4052
|
+
url: string;
|
4053
|
+
icon: string;
|
4054
|
+
tags: string[];
|
4055
|
+
}[];
|
4045
4056
|
Tokens: {
|
4046
4057
|
symbol: string;
|
4047
4058
|
name: string | null;
|
@@ -4058,14 +4069,6 @@ declare const app: Elysia<"", {
|
|
4058
4069
|
verified: boolean;
|
4059
4070
|
displaySymbol: string;
|
4060
4071
|
}[];
|
4061
|
-
Protocols: {
|
4062
|
-
name: string;
|
4063
|
-
description: string;
|
4064
|
-
id: string;
|
4065
|
-
url: string;
|
4066
|
-
icon: string;
|
4067
|
-
tags: string[];
|
4068
|
-
}[];
|
4069
4072
|
name: string;
|
4070
4073
|
apr: number;
|
4071
4074
|
tvl: number;
|
@@ -4076,11 +4079,11 @@ declare const app: Elysia<"", {
|
|
4076
4079
|
action: import("@package/databases").OpportunityAction;
|
4077
4080
|
type: string;
|
4078
4081
|
depositUrl: string | null;
|
4079
|
-
explorerAddress: string | null;
|
4080
|
-
howToSteps: string[];
|
4081
|
-
mainProtocolId: string | null;
|
4082
4082
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
4083
4083
|
identifier: string;
|
4084
|
+
howToSteps: string[];
|
4085
|
+
explorerAddress: string | null;
|
4086
|
+
mainProtocolId: string | null;
|
4084
4087
|
dailyRewards: number;
|
4085
4088
|
tags: string[];
|
4086
4089
|
lastCampaignCreatedAt: Date;
|
@@ -4116,18 +4119,18 @@ declare const app: Elysia<"", {
|
|
4116
4119
|
campaignId: string;
|
4117
4120
|
description: string | null;
|
4118
4121
|
id: string;
|
4119
|
-
params: import("@prisma/client/runtime/
|
4122
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
4120
4123
|
amount: string;
|
4121
4124
|
startTimestamp: bigint;
|
4122
4125
|
type: string;
|
4123
4126
|
computeChainId: number;
|
4124
4127
|
distributionChainId: number;
|
4125
4128
|
endTimestamp: bigint;
|
4126
|
-
opportunityId: string;
|
4127
|
-
creatorAddress: string;
|
4128
4129
|
distributionType: import("@package/databases").DistributionType;
|
4129
4130
|
subType: number | null;
|
4130
4131
|
rewardTokenId: string;
|
4132
|
+
opportunityId: string;
|
4133
|
+
creatorAddress: string;
|
4131
4134
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
4132
4135
|
createdAt: Date;
|
4133
4136
|
rootCampaignId: string | null;
|
@@ -4165,6 +4168,14 @@ declare const app: Elysia<"", {
|
|
4165
4168
|
explorerAddress: string | undefined;
|
4166
4169
|
tags: string[];
|
4167
4170
|
} | {
|
4171
|
+
Protocols: {
|
4172
|
+
name: string;
|
4173
|
+
description: string;
|
4174
|
+
id: string;
|
4175
|
+
url: string;
|
4176
|
+
icon: string;
|
4177
|
+
tags: string[];
|
4178
|
+
}[];
|
4168
4179
|
Tokens: {
|
4169
4180
|
symbol: string;
|
4170
4181
|
name: string | null;
|
@@ -4181,14 +4192,6 @@ declare const app: Elysia<"", {
|
|
4181
4192
|
verified: boolean;
|
4182
4193
|
displaySymbol: string;
|
4183
4194
|
}[];
|
4184
|
-
Protocols: {
|
4185
|
-
name: string;
|
4186
|
-
description: string;
|
4187
|
-
id: string;
|
4188
|
-
url: string;
|
4189
|
-
icon: string;
|
4190
|
-
tags: string[];
|
4191
|
-
}[];
|
4192
4195
|
name: string;
|
4193
4196
|
apr: number;
|
4194
4197
|
tvl: number;
|
@@ -4199,11 +4202,11 @@ declare const app: Elysia<"", {
|
|
4199
4202
|
action: import("@package/databases").OpportunityAction;
|
4200
4203
|
type: string;
|
4201
4204
|
depositUrl: string | null;
|
4202
|
-
explorerAddress: string | null;
|
4203
|
-
howToSteps: string[];
|
4204
|
-
mainProtocolId: string | null;
|
4205
4205
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
4206
4206
|
identifier: string;
|
4207
|
+
howToSteps: string[];
|
4208
|
+
explorerAddress: string | null;
|
4209
|
+
mainProtocolId: string | null;
|
4207
4210
|
dailyRewards: number;
|
4208
4211
|
tags: string[];
|
4209
4212
|
lastCampaignCreatedAt: Date;
|
@@ -4240,18 +4243,18 @@ declare const app: Elysia<"", {
|
|
4240
4243
|
campaignId: string;
|
4241
4244
|
description: string | null;
|
4242
4245
|
id: string;
|
4243
|
-
params: import("@prisma/client/runtime/
|
4246
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
4244
4247
|
amount: string;
|
4245
4248
|
startTimestamp: bigint;
|
4246
4249
|
type: string;
|
4247
4250
|
computeChainId: number;
|
4248
4251
|
distributionChainId: number;
|
4249
4252
|
endTimestamp: bigint;
|
4250
|
-
opportunityId: string;
|
4251
|
-
creatorAddress: string;
|
4252
4253
|
distributionType: import("@package/databases").DistributionType;
|
4253
4254
|
subType: number | null;
|
4254
4255
|
rewardTokenId: string;
|
4256
|
+
opportunityId: string;
|
4257
|
+
creatorAddress: string;
|
4255
4258
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
4256
4259
|
createdAt: Date;
|
4257
4260
|
rootCampaignId: string | null;
|
@@ -4289,6 +4292,14 @@ declare const app: Elysia<"", {
|
|
4289
4292
|
explorerAddress: string | undefined;
|
4290
4293
|
tags: string[];
|
4291
4294
|
} | {
|
4295
|
+
Protocols: {
|
4296
|
+
name: string;
|
4297
|
+
description: string;
|
4298
|
+
id: string;
|
4299
|
+
url: string;
|
4300
|
+
icon: string;
|
4301
|
+
tags: string[];
|
4302
|
+
}[];
|
4292
4303
|
Tokens: {
|
4293
4304
|
symbol: string;
|
4294
4305
|
name: string | null;
|
@@ -4305,14 +4316,6 @@ declare const app: Elysia<"", {
|
|
4305
4316
|
verified: boolean;
|
4306
4317
|
displaySymbol: string;
|
4307
4318
|
}[];
|
4308
|
-
Protocols: {
|
4309
|
-
name: string;
|
4310
|
-
description: string;
|
4311
|
-
id: string;
|
4312
|
-
url: string;
|
4313
|
-
icon: string;
|
4314
|
-
tags: string[];
|
4315
|
-
}[];
|
4316
4319
|
name: string;
|
4317
4320
|
apr: number;
|
4318
4321
|
tvl: number;
|
@@ -4323,11 +4326,11 @@ declare const app: Elysia<"", {
|
|
4323
4326
|
action: import("@package/databases").OpportunityAction;
|
4324
4327
|
type: string;
|
4325
4328
|
depositUrl: string | null;
|
4326
|
-
explorerAddress: string | null;
|
4327
|
-
howToSteps: string[];
|
4328
|
-
mainProtocolId: string | null;
|
4329
4329
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
4330
4330
|
identifier: string;
|
4331
|
+
howToSteps: string[];
|
4332
|
+
explorerAddress: string | null;
|
4333
|
+
mainProtocolId: string | null;
|
4331
4334
|
dailyRewards: number;
|
4332
4335
|
tags: string[];
|
4333
4336
|
lastCampaignCreatedAt: Date;
|
@@ -5912,7 +5915,7 @@ declare const app: Elysia<"", {
|
|
5912
5915
|
200: {
|
5913
5916
|
symbol: string;
|
5914
5917
|
id: number;
|
5915
|
-
args: import("@prisma/client/runtime/
|
5918
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
5916
5919
|
method: import("@package/databases").PriceSourceMethod;
|
5917
5920
|
}[];
|
5918
5921
|
};
|
@@ -5933,7 +5936,7 @@ declare const app: Elysia<"", {
|
|
5933
5936
|
200: {
|
5934
5937
|
symbol: string;
|
5935
5938
|
id: number;
|
5936
|
-
args: import("@prisma/client/runtime/
|
5939
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
5937
5940
|
method: import("@package/databases").PriceSourceMethod;
|
5938
5941
|
};
|
5939
5942
|
422: {
|
@@ -5998,7 +6001,7 @@ declare const app: Elysia<"", {
|
|
5998
6001
|
200: {
|
5999
6002
|
symbol: string;
|
6000
6003
|
id: number;
|
6001
|
-
args: import("@prisma/client/runtime/
|
6004
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
6002
6005
|
method: import("@package/databases").PriceSourceMethod;
|
6003
6006
|
};
|
6004
6007
|
422: {
|
@@ -6032,7 +6035,7 @@ declare const app: Elysia<"", {
|
|
6032
6035
|
200: {
|
6033
6036
|
symbol: string;
|
6034
6037
|
id: number;
|
6035
|
-
args: import("@prisma/client/runtime/
|
6038
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
6036
6039
|
method: import("@package/databases").PriceSourceMethod;
|
6037
6040
|
};
|
6038
6041
|
422: {
|
@@ -6066,7 +6069,7 @@ declare const app: Elysia<"", {
|
|
6066
6069
|
chainId: number;
|
6067
6070
|
userAddress: string;
|
6068
6071
|
arrestTimestamp: bigint;
|
6069
|
-
arrestDetails: import("@prisma/client/runtime/
|
6072
|
+
arrestDetails: import("@prisma/client/runtime/client").JsonValue;
|
6070
6073
|
}[];
|
6071
6074
|
};
|
6072
6075
|
};
|
@@ -6133,7 +6136,7 @@ declare const app: Elysia<"", {
|
|
6133
6136
|
chainId: number;
|
6134
6137
|
userAddress: string;
|
6135
6138
|
arrestTimestamp: bigint;
|
6136
|
-
arrestDetails: import("@prisma/client/runtime/
|
6139
|
+
arrestDetails: import("@prisma/client/runtime/client").JsonValue;
|
6137
6140
|
};
|
6138
6141
|
422: {
|
6139
6142
|
type: "validation";
|
@@ -6380,6 +6383,14 @@ declare const app: Elysia<"", {
|
|
6380
6383
|
id: number;
|
6381
6384
|
icon: string;
|
6382
6385
|
};
|
6386
|
+
Protocols: {
|
6387
|
+
name: string;
|
6388
|
+
description: string;
|
6389
|
+
id: string;
|
6390
|
+
url: string;
|
6391
|
+
icon: string;
|
6392
|
+
tags: string[];
|
6393
|
+
}[];
|
6383
6394
|
Tokens: {
|
6384
6395
|
symbol: string;
|
6385
6396
|
name: string | null;
|
@@ -6396,14 +6407,6 @@ declare const app: Elysia<"", {
|
|
6396
6407
|
verified: boolean;
|
6397
6408
|
displaySymbol: string;
|
6398
6409
|
}[];
|
6399
|
-
Protocols: {
|
6400
|
-
name: string;
|
6401
|
-
description: string;
|
6402
|
-
id: string;
|
6403
|
-
url: string;
|
6404
|
-
icon: string;
|
6405
|
-
tags: string[];
|
6406
|
-
}[];
|
6407
6410
|
MainProtocol: {
|
6408
6411
|
name: string;
|
6409
6412
|
description: string;
|
@@ -6423,11 +6426,11 @@ declare const app: Elysia<"", {
|
|
6423
6426
|
action: import("@package/databases").OpportunityAction;
|
6424
6427
|
type: string;
|
6425
6428
|
depositUrl: string | null;
|
6426
|
-
explorerAddress: string | null;
|
6427
|
-
howToSteps: string[];
|
6428
|
-
mainProtocolId: string | null;
|
6429
6429
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
6430
6430
|
identifier: string;
|
6431
|
+
howToSteps: string[];
|
6432
|
+
explorerAddress: string | null;
|
6433
|
+
mainProtocolId: string | null;
|
6431
6434
|
dailyRewards: number;
|
6432
6435
|
tags: string[];
|
6433
6436
|
lastCampaignCreatedAt: Date;
|
@@ -7185,7 +7188,7 @@ declare const app: Elysia<"", {
|
|
7185
7188
|
campaignId: string;
|
7186
7189
|
error: string;
|
7187
7190
|
status: import("@package/databases").RunStatus;
|
7188
|
-
details: import("@prisma/client/runtime/
|
7191
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
7189
7192
|
computedUntil: bigint;
|
7190
7193
|
processingStarted: bigint;
|
7191
7194
|
}[];
|
@@ -7214,14 +7217,14 @@ declare const app: Elysia<"", {
|
|
7214
7217
|
campaignId: string;
|
7215
7218
|
error: string;
|
7216
7219
|
status: import("@package/databases").RunStatus;
|
7217
|
-
details: import("@prisma/client/runtime/
|
7220
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
7218
7221
|
computedUntil: bigint;
|
7219
7222
|
processingStarted: bigint;
|
7220
7223
|
}[] | {
|
7221
7224
|
campaignId: string;
|
7222
7225
|
error: string;
|
7223
7226
|
status: import("@package/databases").RunStatus;
|
7224
|
-
details: import("@prisma/client/runtime/
|
7227
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
7225
7228
|
computedUntil: bigint;
|
7226
7229
|
processingStarted: bigint;
|
7227
7230
|
};
|
@@ -7258,24 +7261,24 @@ declare const app: Elysia<"", {
|
|
7258
7261
|
computeChainId: number;
|
7259
7262
|
distributionChainId: number;
|
7260
7263
|
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
7264
|
CampaignStatus: {
|
7272
7265
|
campaignId: string;
|
7273
7266
|
error: string;
|
7274
7267
|
status: import("@package/databases").RunStatus;
|
7275
|
-
details: import("@prisma/client/runtime/
|
7268
|
+
details: import("@prisma/client/runtime/client").JsonValue;
|
7276
7269
|
computedUntil: bigint;
|
7277
7270
|
processingStarted: bigint;
|
7278
7271
|
}[];
|
7272
|
+
Opportunity: {
|
7273
|
+
name: string;
|
7274
|
+
type: string;
|
7275
|
+
identifier: string;
|
7276
|
+
};
|
7277
|
+
RewardToken: {
|
7278
|
+
symbol: string;
|
7279
|
+
address: string;
|
7280
|
+
isTest: boolean;
|
7281
|
+
};
|
7279
7282
|
}[];
|
7280
7283
|
422: {
|
7281
7284
|
type: "validation";
|
@@ -9023,11 +9026,11 @@ declare const app: Elysia<"", {
|
|
9023
9026
|
action: import("@package/databases").OpportunityAction;
|
9024
9027
|
type: string;
|
9025
9028
|
depositUrl: string | null;
|
9026
|
-
explorerAddress: string | null;
|
9027
|
-
howToSteps: string[];
|
9028
|
-
mainProtocolId: string | null;
|
9029
9029
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
9030
9030
|
identifier: string;
|
9031
|
+
howToSteps: string[];
|
9032
|
+
explorerAddress: string | null;
|
9033
|
+
mainProtocolId: string | null;
|
9031
9034
|
dailyRewards: number;
|
9032
9035
|
tags: string[];
|
9033
9036
|
lastCampaignCreatedAt: Date;
|
@@ -9036,18 +9039,18 @@ declare const app: Elysia<"", {
|
|
9036
9039
|
campaignId: string;
|
9037
9040
|
description: string | null;
|
9038
9041
|
id: string;
|
9039
|
-
params: import("@prisma/client/runtime/
|
9042
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
9040
9043
|
amount: string;
|
9041
9044
|
startTimestamp: bigint;
|
9042
9045
|
type: string;
|
9043
9046
|
computeChainId: number;
|
9044
9047
|
distributionChainId: number;
|
9045
9048
|
endTimestamp: bigint;
|
9046
|
-
opportunityId: string;
|
9047
|
-
creatorAddress: string;
|
9048
9049
|
distributionType: import("@package/databases").DistributionType;
|
9049
9050
|
subType: number | null;
|
9050
9051
|
rewardTokenId: string;
|
9052
|
+
opportunityId: string;
|
9053
|
+
creatorAddress: string;
|
9051
9054
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
9052
9055
|
createdAt: Date;
|
9053
9056
|
rootCampaignId: string | null;
|
@@ -9094,11 +9097,11 @@ declare const app: Elysia<"", {
|
|
9094
9097
|
action: import("@package/databases").OpportunityAction;
|
9095
9098
|
type: string;
|
9096
9099
|
depositUrl: string | null;
|
9097
|
-
explorerAddress: string | null;
|
9098
|
-
howToSteps: string[];
|
9099
|
-
mainProtocolId: string | null;
|
9100
9100
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
9101
9101
|
identifier: string;
|
9102
|
+
howToSteps: string[];
|
9103
|
+
explorerAddress: string | null;
|
9104
|
+
mainProtocolId: string | null;
|
9102
9105
|
dailyRewards: number;
|
9103
9106
|
tags: string[];
|
9104
9107
|
lastCampaignCreatedAt: Date;
|
@@ -9107,18 +9110,18 @@ declare const app: Elysia<"", {
|
|
9107
9110
|
campaignId: string;
|
9108
9111
|
description: string | null;
|
9109
9112
|
id: string;
|
9110
|
-
params: import("@prisma/client/runtime/
|
9113
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
9111
9114
|
amount: string;
|
9112
9115
|
startTimestamp: bigint;
|
9113
9116
|
type: string;
|
9114
9117
|
computeChainId: number;
|
9115
9118
|
distributionChainId: number;
|
9116
9119
|
endTimestamp: bigint;
|
9117
|
-
opportunityId: string;
|
9118
|
-
creatorAddress: string;
|
9119
9120
|
distributionType: import("@package/databases").DistributionType;
|
9120
9121
|
subType: number | null;
|
9121
9122
|
rewardTokenId: string;
|
9123
|
+
opportunityId: string;
|
9124
|
+
creatorAddress: string;
|
9122
9125
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
9123
9126
|
createdAt: Date;
|
9124
9127
|
rootCampaignId: string | null;
|
@@ -9512,6 +9515,9 @@ declare const app: Elysia<"", {
|
|
9512
9515
|
747474?: {
|
9513
9516
|
[poolId: string]: import("@angleprotocol/sdk/ts").UniswapV4PoolType;
|
9514
9517
|
} | undefined;
|
9518
|
+
151?: {
|
9519
|
+
[poolId: string]: import("@angleprotocol/sdk/ts").UniswapV4PoolType;
|
9520
|
+
} | undefined;
|
9515
9521
|
};
|
9516
9522
|
};
|
9517
9523
|
};
|
@@ -9968,8 +9974,8 @@ declare const app: Elysia<"", {
|
|
9968
9974
|
NodesSources: {
|
9969
9975
|
id: string;
|
9970
9976
|
chainId: number;
|
9971
|
-
lastFetchedBlockNumber: number;
|
9972
9977
|
source: string;
|
9978
|
+
lastFetchedBlockNumber: number;
|
9973
9979
|
topics: string[];
|
9974
9980
|
};
|
9975
9981
|
}[];
|