Skip to content

Commit

Permalink
fix(ironbank): abi regression
Browse files Browse the repository at this point in the history
  • Loading branch information
nymmrx committed Jun 2, 2021
1 parent f650a20 commit 0ed2b28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/adapters/ironbank.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ const CyTokenMetadataAbi = `tuple(
uint256 exchangeRate
)`;

const IronBankPositionAbi = `tuple(
const CyTokenUserMetadataAbi = `tuple(
address assetAddress,
bool enteredMarket,
uint256 supplyBalanceUsdc,
uint256 borrowBalanceUsdc,
uint256 borrowLimitUsdc
)`;

const CyTokenUserMetadataAbi = `tuple(
const IronBankPositionAbi = `tuple(
uint256 supplyBalanceUsdc,
uint256 borrowBalanceUsdc,
uint256 borrowLimitUsdc,
Expand Down

0 comments on commit 0ed2b28

Please sign in to comment.