Skip to content

Commit

Permalink
Fix defender action requesting Lido withdrawals
Browse files Browse the repository at this point in the history
  • Loading branch information
naddison36 committed Oct 22, 2024
1 parent d8a7b6c commit d4ce091
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/actions/autoRequestLidoWithdraw.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ const handler = async (event) => {
);

// References to contracts
const stEth = new ethers.Contract(mainnet.stETH, erc20Abi, signer);
const steth = new ethers.Contract(mainnet.stETH, erc20Abi, signer);
const arm = new ethers.Contract(mainnet.lidoARM, lidoARMAbi, signer);

try {
await requestLidoWithdrawals({
signer,
stEth,
steth,
arm,
minAmount: 1,
});
Expand Down

0 comments on commit d4ce091

Please sign in to comment.