Skip to content

Commit

Permalink
remove isStable from CurveV1Factory data
Browse files Browse the repository at this point in the history
  • Loading branch information
aburkut committed Jul 10, 2024
1 parent 0bbd3f2 commit 6fcbfba
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,6 @@ const implementationConstants: Record<
isWrapNative: false,
isFeeOnTransferSupported: false,
isLending: false,
isStable: true,

N_COINS: 2,
BI_N_COINS: 2n,
Expand Down Expand Up @@ -582,7 +581,6 @@ const implementationConstants: Record<
isWrapNative: false,
isFeeOnTransferSupported: false,
isLending: false,
isStable: true,

N_COINS: 2,
BI_N_COINS: 2n,
Expand All @@ -594,7 +592,6 @@ const implementationConstants: Record<
isWrapNative: false,
isFeeOnTransferSupported: false,
isLending: false,
isStable: true,

N_COINS: 2,
BI_N_COINS: 2n,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ export abstract class PoolPollingBase {
i: iC,
j: jC,
underlyingSwap: false,
isStable: this.poolContextConstants.isStable ? true : false,
n_coins: this.poolConstants.COINS.length,
},
],
Expand Down Expand Up @@ -163,7 +162,6 @@ export abstract class PoolPollingBase {
i: iU,
j: jU,
underlyingSwap: true,
isStable: this.poolContextConstants.isStable ? true : false,
n_coins: this.poolConstants.COINS.length,
},
],
Expand Down
1 change: 0 additions & 1 deletion src/dex/curve-v1-factory/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ export type CurveV1FactoryData = {
i: number;
j: number;
underlyingSwap: boolean;
isStable: boolean;
n_coins: number;
}[];
isApproved?: boolean;
Expand Down

0 comments on commit 6fcbfba

Please sign in to comment.