@merkl/api 1.3.73 → 1.3.74

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.
@@ -3541,85 +3541,6 @@ declare const eden: {
3541
3541
  };
3542
3542
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
3543
3543
  200: {
3544
- id: string;
3545
- chainId: number;
3546
- type: string;
3547
- identifier: string;
3548
- name: string;
3549
- status: "LIVE" | "PAST" | "SOON";
3550
- action: any;
3551
- tokens: ({
3552
- address: string;
3553
- chainId: number;
3554
- decimals: number;
3555
- icon: string;
3556
- id: string;
3557
- isNative: boolean;
3558
- isTest: boolean;
3559
- name: string | null;
3560
- symbol: string;
3561
- type: import("@package/databases").TokenType;
3562
- verified: boolean;
3563
- } & {
3564
- price?: number | null | undefined;
3565
- updatedAt?: number | null | undefined;
3566
- priceSource?: string | null | undefined;
3567
- isTokenWrapper?: boolean | undefined;
3568
- tokenWrapperAddress?: string | undefined;
3569
- })[];
3570
- mainProtocol: "aave" | "aerodrome" | "ajna" | "akron" | "ambient" | "angles" | "arrakis" | "arthswap" | "aura" | "avalon" | "badger" | "balancer" | "base-swap" | "beefy" | "beraborrow" | "beratrax" | "bunni" | "camelot" | "cian" | "compound" | "concrete" | "cross_curve" | "crust" | "curve" | "curveNPool" | "dlend" | "dolomite" | "dragonswap" | "eigenlayer" | "ekubo" | "enzyme" | "equalizer" | "equilibria" | "euler" | "fenix" | "filament" | "fluid" | "fluidvault" | "frax" | "fraxlend" | "gamma" | "gammaswap" | "gearbox" | "hanji" | "holdstation" | "horiza" | "hourglass" | "hybra-pair" | "hyperdrive" | "hypurrfi" | "ichi" | "iguana" | "ion" | "ionic" | "ironclad" | "izumi" | "katana" | "kim" | "koi" | "kyo" | "lagoon" | "layerbank" | "lendle" | "lnd" | "maha" | "mangrove" | "maverick" | "mimswap" | "moonwell" | "morpho" | "neptune" | "oku" | "oxium" | "pancake-swap" | "pendle" | "pinto" | "poolside" | "puffer" | "punchswap" | "quickswap" | "ra" | "radiant" | "ramses" | "reactor_fusion" | "reserve" | "retro" | "rfx" | "sake" | "satlayer" | "satoshi" | "silo" | "sonex" | "sonicmarket" | "spectra" | "splice" | "stability" | "stabull" | "stryke" | "sturdy" | "summerfinance" | "superlend" | "supswap" | "sushi-swap" | "swap-x" | "swapr" | "syncswap" | "tako-tako" | "teller" | "tempest" | "termmax" | "thirdtrade" | "thruster" | "toros" | "trader-joe" | "uniswap" | "uranium" | "veda" | "velodrome" | "venus" | "vest" | "vicuna" | "voltage" | "woofi" | "xlend" | "yei" | "zero" | "zerolend" | "zk-swap" | "zkSwapThreePool" | undefined;
3571
- description: string;
3572
- howToSteps: string[];
3573
- depositUrl: string | undefined;
3574
- explorerAddress: string | undefined;
3575
- tags: string[];
3576
- } | {
3577
- id: string;
3578
- chainId: number;
3579
- type: string;
3580
- identifier: string;
3581
- name: string;
3582
- description: string;
3583
- howToSteps: string[];
3584
- depositUrl: string | null;
3585
- explorerAddress: string | null;
3586
- status: import("@package/databases").Status;
3587
- action: import("@package/databases").OpportunityAction;
3588
- mainProtocolId: string | null;
3589
- tvl: number;
3590
- apr: number;
3591
- maxApr: number | null;
3592
- dailyRewards: number;
3593
- tags: string[];
3594
- lastCampaignCreatedAt: Date;
3595
- manualOverrides: import("@package/databases").OpportunityManualOverride[];
3596
- liveCampaigns: number;
3597
- Protocols: {
3598
- id: string;
3599
- tags: string[];
3600
- name: string;
3601
- description: string;
3602
- url: string;
3603
- icon: string;
3604
- }[];
3605
- Tokens: {
3606
- id: string;
3607
- name: string | null;
3608
- chainId: number;
3609
- address: string;
3610
- decimals: number;
3611
- symbol: string;
3612
- displaySymbol: string;
3613
- icon: string;
3614
- verified: boolean;
3615
- isTest: boolean;
3616
- type: import("@package/databases").TokenType;
3617
- isNative: boolean;
3618
- price: number | null;
3619
- updatedAt: number | null;
3620
- priceSource: string | null;
3621
- }[];
3622
- } | {
3623
3544
  distributionChain?: ({
3624
3545
  endOfDisputePeriod: number;
3625
3546
  icon: string;
@@ -3739,38 +3660,7 @@ declare const eden: {
3739
3660
  startTimestamp: number;
3740
3661
  subType: number | null;
3741
3662
  type: string;
3742
- };
3743
- 422: {
3744
- type: "validation";
3745
- on: string;
3746
- summary?: string | undefined;
3747
- message?: string | undefined;
3748
- found?: unknown;
3749
- property?: string | undefined;
3750
- expected?: string | undefined;
3751
- };
3752
- }>>;
3753
- post: (body: {
3754
- computeChainId: number;
3755
- params: any;
3756
- type: string;
3757
- subType?: number | undefined;
3758
- distributionChainId: number;
3759
- endTimestamp: number;
3760
- startTimestamp: number;
3761
- rewardToken: string;
3762
- id?: string | undefined;
3763
- campaignId?: string | undefined;
3764
- amount?: string | undefined;
3765
- creatorAddress?: string | undefined;
3766
- }, options: {
3767
- fetch?: RequestInit | undefined;
3768
- headers: {
3769
- authorization: string;
3770
- };
3771
- query?: Record<string, unknown> | undefined;
3772
- }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
3773
- 200: {
3663
+ } | {
3774
3664
  id: string;
3775
3665
  chainId: number;
3776
3666
  type: string;
@@ -3849,7 +3739,38 @@ declare const eden: {
3849
3739
  updatedAt: number | null;
3850
3740
  priceSource: string | null;
3851
3741
  }[];
3852
- } | {
3742
+ };
3743
+ 422: {
3744
+ type: "validation";
3745
+ on: string;
3746
+ summary?: string | undefined;
3747
+ message?: string | undefined;
3748
+ found?: unknown;
3749
+ property?: string | undefined;
3750
+ expected?: string | undefined;
3751
+ };
3752
+ }>>;
3753
+ post: (body: {
3754
+ computeChainId: number;
3755
+ params: any;
3756
+ type: string;
3757
+ subType?: number | undefined;
3758
+ distributionChainId: number;
3759
+ endTimestamp: number;
3760
+ startTimestamp: number;
3761
+ rewardToken: string;
3762
+ id?: string | undefined;
3763
+ campaignId?: string | undefined;
3764
+ amount?: string | undefined;
3765
+ creatorAddress?: string | undefined;
3766
+ }, options: {
3767
+ fetch?: RequestInit | undefined;
3768
+ headers: {
3769
+ authorization: string;
3770
+ };
3771
+ query?: Record<string, unknown> | undefined;
3772
+ }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
3773
+ 200: {
3853
3774
  distributionChain?: ({
3854
3775
  endOfDisputePeriod: number;
3855
3776
  icon: string;
@@ -3969,108 +3890,108 @@ declare const eden: {
3969
3890
  startTimestamp: number;
3970
3891
  subType: number | null;
3971
3892
  type: string;
3972
- };
3973
- 422: {
3974
- type: "validation";
3975
- on: string;
3976
- summary?: string | undefined;
3977
- message?: string | undefined;
3978
- found?: unknown;
3979
- property?: string | undefined;
3980
- expected?: string | undefined;
3981
- };
3982
- }>>;
3983
- erc20: {
3984
- get: (options: {
3985
- fetch?: RequestInit | undefined;
3986
- headers: {
3987
- authorization: string;
3988
- };
3989
- query: {
3893
+ } | {
3894
+ id: string;
3895
+ chainId: number;
3896
+ type: string;
3897
+ identifier: string;
3898
+ name: string;
3899
+ status: "LIVE" | "PAST" | "SOON";
3900
+ action: any;
3901
+ tokens: ({
3990
3902
  address: string;
3991
3903
  chainId: number;
3992
- };
3993
- }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
3994
- 200: {
3904
+ decimals: number;
3905
+ icon: string;
3995
3906
  id: string;
3996
- chainId: number;
3997
- type: string;
3998
- identifier: string;
3907
+ isNative: boolean;
3908
+ isTest: boolean;
3909
+ name: string | null;
3910
+ symbol: string;
3911
+ type: import("@package/databases").TokenType;
3912
+ verified: boolean;
3913
+ } & {
3914
+ price?: number | null | undefined;
3915
+ updatedAt?: number | null | undefined;
3916
+ priceSource?: string | null | undefined;
3917
+ isTokenWrapper?: boolean | undefined;
3918
+ tokenWrapperAddress?: string | undefined;
3919
+ })[];
3920
+ mainProtocol: "aave" | "aerodrome" | "ajna" | "akron" | "ambient" | "angles" | "arrakis" | "arthswap" | "aura" | "avalon" | "badger" | "balancer" | "base-swap" | "beefy" | "beraborrow" | "beratrax" | "bunni" | "camelot" | "cian" | "compound" | "concrete" | "cross_curve" | "crust" | "curve" | "curveNPool" | "dlend" | "dolomite" | "dragonswap" | "eigenlayer" | "ekubo" | "enzyme" | "equalizer" | "equilibria" | "euler" | "fenix" | "filament" | "fluid" | "fluidvault" | "frax" | "fraxlend" | "gamma" | "gammaswap" | "gearbox" | "hanji" | "holdstation" | "horiza" | "hourglass" | "hybra-pair" | "hyperdrive" | "hypurrfi" | "ichi" | "iguana" | "ion" | "ionic" | "ironclad" | "izumi" | "katana" | "kim" | "koi" | "kyo" | "lagoon" | "layerbank" | "lendle" | "lnd" | "maha" | "mangrove" | "maverick" | "mimswap" | "moonwell" | "morpho" | "neptune" | "oku" | "oxium" | "pancake-swap" | "pendle" | "pinto" | "poolside" | "puffer" | "punchswap" | "quickswap" | "ra" | "radiant" | "ramses" | "reactor_fusion" | "reserve" | "retro" | "rfx" | "sake" | "satlayer" | "satoshi" | "silo" | "sonex" | "sonicmarket" | "spectra" | "splice" | "stability" | "stabull" | "stryke" | "sturdy" | "summerfinance" | "superlend" | "supswap" | "sushi-swap" | "swap-x" | "swapr" | "syncswap" | "tako-tako" | "teller" | "tempest" | "termmax" | "thirdtrade" | "thruster" | "toros" | "trader-joe" | "uniswap" | "uranium" | "veda" | "velodrome" | "venus" | "vest" | "vicuna" | "voltage" | "woofi" | "xlend" | "yei" | "zero" | "zerolend" | "zk-swap" | "zkSwapThreePool" | undefined;
3921
+ description: string;
3922
+ howToSteps: string[];
3923
+ depositUrl: string | undefined;
3924
+ explorerAddress: string | undefined;
3925
+ tags: string[];
3926
+ } | {
3927
+ id: string;
3928
+ chainId: number;
3929
+ type: string;
3930
+ identifier: string;
3931
+ name: string;
3932
+ description: string;
3933
+ howToSteps: string[];
3934
+ depositUrl: string | null;
3935
+ explorerAddress: string | null;
3936
+ status: import("@package/databases").Status;
3937
+ action: import("@package/databases").OpportunityAction;
3938
+ mainProtocolId: string | null;
3939
+ tvl: number;
3940
+ apr: number;
3941
+ maxApr: number | null;
3942
+ dailyRewards: number;
3943
+ tags: string[];
3944
+ lastCampaignCreatedAt: Date;
3945
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
3946
+ liveCampaigns: number;
3947
+ Protocols: {
3948
+ id: string;
3949
+ tags: string[];
3999
3950
  name: string;
4000
- status: "LIVE" | "PAST" | "SOON";
4001
- action: any;
4002
- tokens: ({
4003
- address: string;
4004
- chainId: number;
4005
- decimals: number;
4006
- icon: string;
4007
- id: string;
4008
- isNative: boolean;
4009
- isTest: boolean;
4010
- name: string | null;
4011
- symbol: string;
4012
- type: import("@package/databases").TokenType;
4013
- verified: boolean;
4014
- } & {
4015
- price?: number | null | undefined;
4016
- updatedAt?: number | null | undefined;
4017
- priceSource?: string | null | undefined;
4018
- isTokenWrapper?: boolean | undefined;
4019
- tokenWrapperAddress?: string | undefined;
4020
- })[];
4021
- mainProtocol: "aave" | "aerodrome" | "ajna" | "akron" | "ambient" | "angles" | "arrakis" | "arthswap" | "aura" | "avalon" | "badger" | "balancer" | "base-swap" | "beefy" | "beraborrow" | "beratrax" | "bunni" | "camelot" | "cian" | "compound" | "concrete" | "cross_curve" | "crust" | "curve" | "curveNPool" | "dlend" | "dolomite" | "dragonswap" | "eigenlayer" | "ekubo" | "enzyme" | "equalizer" | "equilibria" | "euler" | "fenix" | "filament" | "fluid" | "fluidvault" | "frax" | "fraxlend" | "gamma" | "gammaswap" | "gearbox" | "hanji" | "holdstation" | "horiza" | "hourglass" | "hybra-pair" | "hyperdrive" | "hypurrfi" | "ichi" | "iguana" | "ion" | "ionic" | "ironclad" | "izumi" | "katana" | "kim" | "koi" | "kyo" | "lagoon" | "layerbank" | "lendle" | "lnd" | "maha" | "mangrove" | "maverick" | "mimswap" | "moonwell" | "morpho" | "neptune" | "oku" | "oxium" | "pancake-swap" | "pendle" | "pinto" | "poolside" | "puffer" | "punchswap" | "quickswap" | "ra" | "radiant" | "ramses" | "reactor_fusion" | "reserve" | "retro" | "rfx" | "sake" | "satlayer" | "satoshi" | "silo" | "sonex" | "sonicmarket" | "spectra" | "splice" | "stability" | "stabull" | "stryke" | "sturdy" | "summerfinance" | "superlend" | "supswap" | "sushi-swap" | "swap-x" | "swapr" | "syncswap" | "tako-tako" | "teller" | "tempest" | "termmax" | "thirdtrade" | "thruster" | "toros" | "trader-joe" | "uniswap" | "uranium" | "veda" | "velodrome" | "venus" | "vest" | "vicuna" | "voltage" | "woofi" | "xlend" | "yei" | "zero" | "zerolend" | "zk-swap" | "zkSwapThreePool" | undefined;
4022
3951
  description: string;
4023
- howToSteps: string[];
4024
- depositUrl: string | undefined;
4025
- explorerAddress: string | undefined;
4026
- tags: string[];
4027
- } | {
3952
+ url: string;
3953
+ icon: string;
3954
+ }[];
3955
+ Tokens: {
4028
3956
  id: string;
3957
+ name: string | null;
4029
3958
  chainId: number;
4030
- type: string;
4031
- identifier: string;
4032
- name: string;
4033
- description: string;
4034
- howToSteps: string[];
4035
- depositUrl: string | null;
4036
- explorerAddress: string | null;
4037
- status: import("@package/databases").Status;
4038
- action: import("@package/databases").OpportunityAction;
4039
- mainProtocolId: string | null;
4040
- tvl: number;
4041
- apr: number;
4042
- maxApr: number | null;
4043
- dailyRewards: number;
4044
- tags: string[];
4045
- lastCampaignCreatedAt: Date;
4046
- manualOverrides: import("@package/databases").OpportunityManualOverride[];
4047
- liveCampaigns: number;
4048
- Protocols: {
4049
- id: string;
4050
- tags: string[];
4051
- name: string;
4052
- description: string;
4053
- url: string;
4054
- icon: string;
4055
- }[];
4056
- Tokens: {
4057
- id: string;
4058
- name: string | null;
4059
- chainId: number;
4060
- address: string;
4061
- decimals: number;
4062
- symbol: string;
4063
- displaySymbol: string;
4064
- icon: string;
4065
- verified: boolean;
4066
- isTest: boolean;
4067
- type: import("@package/databases").TokenType;
4068
- isNative: boolean;
4069
- price: number | null;
4070
- updatedAt: number | null;
4071
- priceSource: string | null;
4072
- }[];
4073
- } | {
3959
+ address: string;
3960
+ decimals: number;
3961
+ symbol: string;
3962
+ displaySymbol: string;
3963
+ icon: string;
3964
+ verified: boolean;
3965
+ isTest: boolean;
3966
+ type: import("@package/databases").TokenType;
3967
+ isNative: boolean;
3968
+ price: number | null;
3969
+ updatedAt: number | null;
3970
+ priceSource: string | null;
3971
+ }[];
3972
+ };
3973
+ 422: {
3974
+ type: "validation";
3975
+ on: string;
3976
+ summary?: string | undefined;
3977
+ message?: string | undefined;
3978
+ found?: unknown;
3979
+ property?: string | undefined;
3980
+ expected?: string | undefined;
3981
+ };
3982
+ }>>;
3983
+ erc20: {
3984
+ get: (options: {
3985
+ fetch?: RequestInit | undefined;
3986
+ headers: {
3987
+ authorization: string;
3988
+ };
3989
+ query: {
3990
+ address: string;
3991
+ chainId: number;
3992
+ };
3993
+ }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
3994
+ 200: {
4074
3995
  distributionChain?: ({
4075
3996
  endOfDisputePeriod: number;
4076
3997
  icon: string;
@@ -4190,6 +4111,85 @@ declare const eden: {
4190
4111
  startTimestamp: number;
4191
4112
  subType: number | null;
4192
4113
  type: string;
4114
+ } | {
4115
+ id: string;
4116
+ chainId: number;
4117
+ type: string;
4118
+ identifier: string;
4119
+ name: string;
4120
+ status: "LIVE" | "PAST" | "SOON";
4121
+ action: any;
4122
+ tokens: ({
4123
+ address: string;
4124
+ chainId: number;
4125
+ decimals: number;
4126
+ icon: string;
4127
+ id: string;
4128
+ isNative: boolean;
4129
+ isTest: boolean;
4130
+ name: string | null;
4131
+ symbol: string;
4132
+ type: import("@package/databases").TokenType;
4133
+ verified: boolean;
4134
+ } & {
4135
+ price?: number | null | undefined;
4136
+ updatedAt?: number | null | undefined;
4137
+ priceSource?: string | null | undefined;
4138
+ isTokenWrapper?: boolean | undefined;
4139
+ tokenWrapperAddress?: string | undefined;
4140
+ })[];
4141
+ mainProtocol: "aave" | "aerodrome" | "ajna" | "akron" | "ambient" | "angles" | "arrakis" | "arthswap" | "aura" | "avalon" | "badger" | "balancer" | "base-swap" | "beefy" | "beraborrow" | "beratrax" | "bunni" | "camelot" | "cian" | "compound" | "concrete" | "cross_curve" | "crust" | "curve" | "curveNPool" | "dlend" | "dolomite" | "dragonswap" | "eigenlayer" | "ekubo" | "enzyme" | "equalizer" | "equilibria" | "euler" | "fenix" | "filament" | "fluid" | "fluidvault" | "frax" | "fraxlend" | "gamma" | "gammaswap" | "gearbox" | "hanji" | "holdstation" | "horiza" | "hourglass" | "hybra-pair" | "hyperdrive" | "hypurrfi" | "ichi" | "iguana" | "ion" | "ionic" | "ironclad" | "izumi" | "katana" | "kim" | "koi" | "kyo" | "lagoon" | "layerbank" | "lendle" | "lnd" | "maha" | "mangrove" | "maverick" | "mimswap" | "moonwell" | "morpho" | "neptune" | "oku" | "oxium" | "pancake-swap" | "pendle" | "pinto" | "poolside" | "puffer" | "punchswap" | "quickswap" | "ra" | "radiant" | "ramses" | "reactor_fusion" | "reserve" | "retro" | "rfx" | "sake" | "satlayer" | "satoshi" | "silo" | "sonex" | "sonicmarket" | "spectra" | "splice" | "stability" | "stabull" | "stryke" | "sturdy" | "summerfinance" | "superlend" | "supswap" | "sushi-swap" | "swap-x" | "swapr" | "syncswap" | "tako-tako" | "teller" | "tempest" | "termmax" | "thirdtrade" | "thruster" | "toros" | "trader-joe" | "uniswap" | "uranium" | "veda" | "velodrome" | "venus" | "vest" | "vicuna" | "voltage" | "woofi" | "xlend" | "yei" | "zero" | "zerolend" | "zk-swap" | "zkSwapThreePool" | undefined;
4142
+ description: string;
4143
+ howToSteps: string[];
4144
+ depositUrl: string | undefined;
4145
+ explorerAddress: string | undefined;
4146
+ tags: string[];
4147
+ } | {
4148
+ id: string;
4149
+ chainId: number;
4150
+ type: string;
4151
+ identifier: string;
4152
+ name: string;
4153
+ description: string;
4154
+ howToSteps: string[];
4155
+ depositUrl: string | null;
4156
+ explorerAddress: string | null;
4157
+ status: import("@package/databases").Status;
4158
+ action: import("@package/databases").OpportunityAction;
4159
+ mainProtocolId: string | null;
4160
+ tvl: number;
4161
+ apr: number;
4162
+ maxApr: number | null;
4163
+ dailyRewards: number;
4164
+ tags: string[];
4165
+ lastCampaignCreatedAt: Date;
4166
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
4167
+ liveCampaigns: number;
4168
+ Protocols: {
4169
+ id: string;
4170
+ tags: string[];
4171
+ name: string;
4172
+ description: string;
4173
+ url: string;
4174
+ icon: string;
4175
+ }[];
4176
+ Tokens: {
4177
+ id: string;
4178
+ name: string | null;
4179
+ chainId: number;
4180
+ address: string;
4181
+ decimals: number;
4182
+ symbol: string;
4183
+ displaySymbol: string;
4184
+ icon: string;
4185
+ verified: boolean;
4186
+ isTest: boolean;
4187
+ type: import("@package/databases").TokenType;
4188
+ isNative: boolean;
4189
+ price: number | null;
4190
+ updatedAt: number | null;
4191
+ priceSource: string | null;
4192
+ }[];
4193
4193
  };
4194
4194
  422: {
4195
4195
  type: "validation";
@@ -5001,85 +5001,6 @@ declare const eden: {
5001
5001
  query?: Record<string, unknown> | undefined;
5002
5002
  }) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
5003
5003
  200: {
5004
- id: string;
5005
- chainId: number;
5006
- type: string;
5007
- identifier: string;
5008
- name: string;
5009
- status: "LIVE" | "PAST" | "SOON";
5010
- action: any;
5011
- tokens: ({
5012
- address: string;
5013
- chainId: number;
5014
- decimals: number;
5015
- icon: string;
5016
- id: string;
5017
- isNative: boolean;
5018
- isTest: boolean;
5019
- name: string | null;
5020
- symbol: string;
5021
- type: import("@package/databases").TokenType;
5022
- verified: boolean;
5023
- } & {
5024
- price?: number | null | undefined;
5025
- updatedAt?: number | null | undefined;
5026
- priceSource?: string | null | undefined;
5027
- isTokenWrapper?: boolean | undefined;
5028
- tokenWrapperAddress?: string | undefined;
5029
- })[];
5030
- mainProtocol: "aave" | "aerodrome" | "ajna" | "akron" | "ambient" | "angles" | "arrakis" | "arthswap" | "aura" | "avalon" | "badger" | "balancer" | "base-swap" | "beefy" | "beraborrow" | "beratrax" | "bunni" | "camelot" | "cian" | "compound" | "concrete" | "cross_curve" | "crust" | "curve" | "curveNPool" | "dlend" | "dolomite" | "dragonswap" | "eigenlayer" | "ekubo" | "enzyme" | "equalizer" | "equilibria" | "euler" | "fenix" | "filament" | "fluid" | "fluidvault" | "frax" | "fraxlend" | "gamma" | "gammaswap" | "gearbox" | "hanji" | "holdstation" | "horiza" | "hourglass" | "hybra-pair" | "hyperdrive" | "hypurrfi" | "ichi" | "iguana" | "ion" | "ionic" | "ironclad" | "izumi" | "katana" | "kim" | "koi" | "kyo" | "lagoon" | "layerbank" | "lendle" | "lnd" | "maha" | "mangrove" | "maverick" | "mimswap" | "moonwell" | "morpho" | "neptune" | "oku" | "oxium" | "pancake-swap" | "pendle" | "pinto" | "poolside" | "puffer" | "punchswap" | "quickswap" | "ra" | "radiant" | "ramses" | "reactor_fusion" | "reserve" | "retro" | "rfx" | "sake" | "satlayer" | "satoshi" | "silo" | "sonex" | "sonicmarket" | "spectra" | "splice" | "stability" | "stabull" | "stryke" | "sturdy" | "summerfinance" | "superlend" | "supswap" | "sushi-swap" | "swap-x" | "swapr" | "syncswap" | "tako-tako" | "teller" | "tempest" | "termmax" | "thirdtrade" | "thruster" | "toros" | "trader-joe" | "uniswap" | "uranium" | "veda" | "velodrome" | "venus" | "vest" | "vicuna" | "voltage" | "woofi" | "xlend" | "yei" | "zero" | "zerolend" | "zk-swap" | "zkSwapThreePool" | undefined;
5031
- description: string;
5032
- howToSteps: string[];
5033
- depositUrl: string | undefined;
5034
- explorerAddress: string | undefined;
5035
- tags: string[];
5036
- } | {
5037
- id: string;
5038
- chainId: number;
5039
- type: string;
5040
- identifier: string;
5041
- name: string;
5042
- description: string;
5043
- howToSteps: string[];
5044
- depositUrl: string | null;
5045
- explorerAddress: string | null;
5046
- status: import("@package/databases").Status;
5047
- action: import("@package/databases").OpportunityAction;
5048
- mainProtocolId: string | null;
5049
- tvl: number;
5050
- apr: number;
5051
- maxApr: number | null;
5052
- dailyRewards: number;
5053
- tags: string[];
5054
- lastCampaignCreatedAt: Date;
5055
- manualOverrides: import("@package/databases").OpportunityManualOverride[];
5056
- liveCampaigns: number;
5057
- Protocols: {
5058
- id: string;
5059
- tags: string[];
5060
- name: string;
5061
- description: string;
5062
- url: string;
5063
- icon: string;
5064
- }[];
5065
- Tokens: {
5066
- id: string;
5067
- name: string | null;
5068
- chainId: number;
5069
- address: string;
5070
- decimals: number;
5071
- symbol: string;
5072
- displaySymbol: string;
5073
- icon: string;
5074
- verified: boolean;
5075
- isTest: boolean;
5076
- type: import("@package/databases").TokenType;
5077
- isNative: boolean;
5078
- price: number | null;
5079
- updatedAt: number | null;
5080
- priceSource: string | null;
5081
- }[];
5082
- } | {
5083
5004
  distributionChain?: ({
5084
5005
  endOfDisputePeriod: number;
5085
5006
  icon: string;
@@ -5199,6 +5120,85 @@ declare const eden: {
5199
5120
  startTimestamp: number;
5200
5121
  subType: number | null;
5201
5122
  type: string;
5123
+ } | {
5124
+ id: string;
5125
+ chainId: number;
5126
+ type: string;
5127
+ identifier: string;
5128
+ name: string;
5129
+ status: "LIVE" | "PAST" | "SOON";
5130
+ action: any;
5131
+ tokens: ({
5132
+ address: string;
5133
+ chainId: number;
5134
+ decimals: number;
5135
+ icon: string;
5136
+ id: string;
5137
+ isNative: boolean;
5138
+ isTest: boolean;
5139
+ name: string | null;
5140
+ symbol: string;
5141
+ type: import("@package/databases").TokenType;
5142
+ verified: boolean;
5143
+ } & {
5144
+ price?: number | null | undefined;
5145
+ updatedAt?: number | null | undefined;
5146
+ priceSource?: string | null | undefined;
5147
+ isTokenWrapper?: boolean | undefined;
5148
+ tokenWrapperAddress?: string | undefined;
5149
+ })[];
5150
+ mainProtocol: "aave" | "aerodrome" | "ajna" | "akron" | "ambient" | "angles" | "arrakis" | "arthswap" | "aura" | "avalon" | "badger" | "balancer" | "base-swap" | "beefy" | "beraborrow" | "beratrax" | "bunni" | "camelot" | "cian" | "compound" | "concrete" | "cross_curve" | "crust" | "curve" | "curveNPool" | "dlend" | "dolomite" | "dragonswap" | "eigenlayer" | "ekubo" | "enzyme" | "equalizer" | "equilibria" | "euler" | "fenix" | "filament" | "fluid" | "fluidvault" | "frax" | "fraxlend" | "gamma" | "gammaswap" | "gearbox" | "hanji" | "holdstation" | "horiza" | "hourglass" | "hybra-pair" | "hyperdrive" | "hypurrfi" | "ichi" | "iguana" | "ion" | "ionic" | "ironclad" | "izumi" | "katana" | "kim" | "koi" | "kyo" | "lagoon" | "layerbank" | "lendle" | "lnd" | "maha" | "mangrove" | "maverick" | "mimswap" | "moonwell" | "morpho" | "neptune" | "oku" | "oxium" | "pancake-swap" | "pendle" | "pinto" | "poolside" | "puffer" | "punchswap" | "quickswap" | "ra" | "radiant" | "ramses" | "reactor_fusion" | "reserve" | "retro" | "rfx" | "sake" | "satlayer" | "satoshi" | "silo" | "sonex" | "sonicmarket" | "spectra" | "splice" | "stability" | "stabull" | "stryke" | "sturdy" | "summerfinance" | "superlend" | "supswap" | "sushi-swap" | "swap-x" | "swapr" | "syncswap" | "tako-tako" | "teller" | "tempest" | "termmax" | "thirdtrade" | "thruster" | "toros" | "trader-joe" | "uniswap" | "uranium" | "veda" | "velodrome" | "venus" | "vest" | "vicuna" | "voltage" | "woofi" | "xlend" | "yei" | "zero" | "zerolend" | "zk-swap" | "zkSwapThreePool" | undefined;
5151
+ description: string;
5152
+ howToSteps: string[];
5153
+ depositUrl: string | undefined;
5154
+ explorerAddress: string | undefined;
5155
+ tags: string[];
5156
+ } | {
5157
+ id: string;
5158
+ chainId: number;
5159
+ type: string;
5160
+ identifier: string;
5161
+ name: string;
5162
+ description: string;
5163
+ howToSteps: string[];
5164
+ depositUrl: string | null;
5165
+ explorerAddress: string | null;
5166
+ status: import("@package/databases").Status;
5167
+ action: import("@package/databases").OpportunityAction;
5168
+ mainProtocolId: string | null;
5169
+ tvl: number;
5170
+ apr: number;
5171
+ maxApr: number | null;
5172
+ dailyRewards: number;
5173
+ tags: string[];
5174
+ lastCampaignCreatedAt: Date;
5175
+ manualOverrides: import("@package/databases").OpportunityManualOverride[];
5176
+ liveCampaigns: number;
5177
+ Protocols: {
5178
+ id: string;
5179
+ tags: string[];
5180
+ name: string;
5181
+ description: string;
5182
+ url: string;
5183
+ icon: string;
5184
+ }[];
5185
+ Tokens: {
5186
+ id: string;
5187
+ name: string | null;
5188
+ chainId: number;
5189
+ address: string;
5190
+ decimals: number;
5191
+ symbol: string;
5192
+ displaySymbol: string;
5193
+ icon: string;
5194
+ verified: boolean;
5195
+ isTest: boolean;
5196
+ type: import("@package/databases").TokenType;
5197
+ isNative: boolean;
5198
+ price: number | null;
5199
+ updatedAt: number | null;
5200
+ priceSource: string | null;
5201
+ }[];
5202
5202
  };
5203
5203
  422: {
5204
5204
  type: "validation";