We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46f540d commit f784621Copy full SHA for f784621
packages/client/src/actions/borrow.test.ts
@@ -13,8 +13,8 @@ import {
13
ETHEREUM_FORK_ID,
14
fetchReserve,
15
fundErc20Address,
16
- wait,
17
WETH_ADDRESS,
+ wait,
18
} from '../test-utils';
19
import { sendWith } from '../viem';
20
import { market } from './markets';
@@ -119,7 +119,10 @@ describe('Given an Aave Market', () => {
119
// ]);
120
121
// Borrow from the reserve
122
- const borrowReserve = await fetchReserve(WETH_ADDRESS, evmAddress(wallet.account!.address));
+ const borrowReserve = await fetchReserve(
123
+ WETH_ADDRESS,
124
+ evmAddress(wallet.account!.address),
125
+ );
126
const borrowResult = await borrow(client, {
127
market: marketInfo.address,
128
chainId: marketInfo.chain.chainId,
0 commit comments