Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add pool metadata #5874

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/assets/images/icons/protocols/mellow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/assets/images/icons/protocols/symbiotic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/composables/useProtocols.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ export enum Protocol {
Swell = 'swell',
EtherFi = 'etherfi',
Kelp = 'kelp',
Mellow = 'mellow',
Symbiotic = 'symbiotic',
}

export const protocolIconPaths: Record<Protocol, string> = {
Expand Down Expand Up @@ -102,4 +104,12 @@ export const protocolIconPaths: Record<Protocol, string> = {
'@/assets/images/icons/protocols/gyro.png',
import.meta.url
).href,
[Protocol.Mellow]: new URL(
'@/assets/images/icons/protocols/mellow.png',
import.meta.url
).href,
[Protocol.Symbiotic]: new URL(
'@/assets/images/icons/protocols/symbiotic.svg',
import.meta.url
).href,
};
16 changes: 16 additions & 0 deletions src/lib/config/mainnet/pools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -748,6 +748,22 @@ const pools: Pools = {
},
],
},
'0x4216d5900a6109bba48418b5e2ab6cc4e61cf4770000000000000000000006a1': {
points: [
{
protocol: Protocol.Mellow,
multiple: '3',
description:
'LPs in this pool get their share of: 3x on the total TVL of the LRTs in the pool. This is around 2.4x to the amount of the pool, if LRTs comprise around a 80% of the pool.',
},
{
protocol: Protocol.Symbiotic,
multiple: '1',
description:
'LPs in this pool get their share of 1x on the amount of LRTs held in the pool.',
},
],
},
},
Deep: [
'0x7b50775383d3d6f0215a8f290f2c9e2eebbeceb20000000000000000000000fe', // bb-a-USD1 (mainnet)
Expand Down
Loading