Skip to content

Commit

Permalink
feat: ekubo defi eligble
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveVodrazka committed Dec 19, 2024
1 parent e37564c commit 768bde7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src/classes/Pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,9 +306,7 @@ export class Pool extends Pair {
get isDefispringEligible(): boolean {
if (
this.baseToken.id === TokenKey.BTC ||
this.baseToken.id === TokenKey.EKUBO ||
this.quoteToken.id === TokenKey.BTC ||
this.quoteToken.id === TokenKey.EKUBO
this.quoteToken.id === TokenKey.BTC
) {
return false;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/AddProposal/pools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ export const pools = [
new Pool(STRK_ADDRESS, USDC_ADDRESS, OptionType.Put),
new Pool(ETH_ADDRESS, USDC_ADDRESS, OptionType.Call),
new Pool(ETH_ADDRESS, USDC_ADDRESS, OptionType.Put),
new Pool(EKUBO_ADDRESS, USDC_ADDRESS, OptionType.Call),
new Pool(EKUBO_ADDRESS, USDC_ADDRESS, OptionType.Put),
new Pool(ETH_ADDRESS, STRK_ADDRESS, OptionType.Call),
new Pool(ETH_ADDRESS, STRK_ADDRESS, OptionType.Put),
new Pool(BTC_ADDRESS, USDC_ADDRESS, OptionType.Call),
new Pool(BTC_ADDRESS, USDC_ADDRESS, OptionType.Put),
new Pool(EKUBO_ADDRESS, USDC_ADDRESS, OptionType.Call),
new Pool(EKUBO_ADDRESS, USDC_ADDRESS, OptionType.Put),
];

0 comments on commit 768bde7

Please sign in to comment.