Skip to content
Open
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
20 changes: 20 additions & 0 deletions packages/chains/src/chains/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import {
ChainType,
PartnerCampaignType,
SupportedDex,
SupportedOdyssey,
SupportedOdysseyStrategy,
SupportedYieldSeeker,
} from "@metrom-xyz/sdk";
import { SupportedChain, ADDRESS } from "@metrom-xyz/contracts";
Expand All @@ -15,6 +17,7 @@ import { HydrexLogo } from "../assets/logos/dexes/hydrex";
import { BalancerLogo } from "../assets/logos/dexes/balancer";
import { QuickswapLogo } from "../assets/logos/dexes/quickswap";
import { YieldSeekerLogo } from "../assets/logos/yield-seeker";
import { OdysseyLogo } from "../assets/logos/odyssey";

export const baseData: ChainData = {
active: true,
Expand All @@ -31,6 +34,11 @@ export const baseData: ChainData = {
partner: false,
type: BaseCampaignType.AmmPoolLiquidity,
},
{
active: true,
partner: false,
type: BaseCampaignType.Odyssey,
},
{
active: false,
partner: true,
Expand Down Expand Up @@ -87,6 +95,18 @@ export const baseData: ChainData = {
},
supportsFetchAllPools: true,
},
{
active: true,
type: ProtocolType.Odyssey,
slug: SupportedOdyssey.Odyssey,
logo: OdysseyLogo,
name: "Odyssey",
strategies: [
SupportedOdysseyStrategy.SynthStrategy,
SupportedOdysseyStrategy.CompoundV3BorrowStrategy,
SupportedOdysseyStrategy.CompoundV3VesperStrategy,
],
},
{
active: false,
type: ProtocolType.YieldSeeker,
Expand Down
18 changes: 15 additions & 3 deletions packages/frontend/messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
"description": "Incentivize users holding any ERC20 token."
},
"odyssey": {
"title": "Odyssey strategy",
"title": "ODYSSEY",
"description": "Incentivize users opting for a particular strategy on Odyssey."
},
"partnerAction": {
Expand Down Expand Up @@ -348,6 +348,19 @@
"apply": "Apply"
}
},
"odyssey": {
"brand": { "title": "Platform" },
"strategy": { "title": "Strategy" },
"assets": {
"title": "Asset",
"list": {
"token": "Token",
"empty": "Nothing here",
"allocated": "Allocated",
"deposited": "Deposited"
}
}
},
"aaveV3": {
"brand": { "title": "Platform" },
"actions": {
Expand Down Expand Up @@ -376,8 +389,7 @@
"empty": "Nothing here",
"debt": "Debt",
"deposits": "Deposits"
},
"apply": "Apply"
}
},
"blacklistedCrossBorrowCollaterals": {
"title": "Block cross borrow",
Expand Down
Loading
Loading