From 7decdb4cdfa40861e4ab0f89534fb522af7e9794 Mon Sep 17 00:00:00 2001 From: lcfr Date: Thu, 1 Jun 2023 22:45:04 -0400 Subject: [PATCH] work --- README.md | 3 --- src/App.jsx | 1 - 2 files changed, 4 deletions(-) diff --git a/README.md b/README.md index 6e887fb..d4f96ee 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,6 @@ An "easy-to-use" react app for building FlashBots Bundles for token rescues. [Live App Here](https://bundler.lcfr.io) -contracts/transferHelper.sol : A small yul contract to faciliate bulk transferring ERC721 tokens effeciently. -[0xbcf192495e2ff497c34f872b27ae0ea21e6a7874](https://etherscan.io/address/0xbcf192495e2ff497c34f872b27ae0ea21e6a7874) - This app works by adding a FlashBots RPC that caches multiple transactions into a Bundle to be sent to a Flashbots relay. diff --git a/src/App.jsx b/src/App.jsx index d89de0f..f76c387 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -926,7 +926,6 @@ function App(props) { const safeTransferFromArray = tokenIdsArrayBN.map((tokenId) => { const tokenInterface = new ethers.utils.Interface(ERC721ABI); return tokenInterface.encodeFunctionData("safeTransferFrom", [hackedAddress, toAddress, tokenId]); - // return transferContract.interface.encodeFunctionData("safeTransferFrom", [hackedAddress, toAddress, tokenId]); }); const tx = await transferContract.connect(userSigner).transfer(safeTransferFromArray, contractAddress, hackedAddress);