# run the ETH impersonation script
yarn eth-hardhat
# run the flashbots script
yarn flashbots
# run the BSC script
yarn bsc
- get private key
- ensure transactions work with EIP-1559, modify if necessary
- save the moneys
supported Node.js version: 16
compromised account: 0xF248f7e076F8F63b39DEcEf2B115E01c9c6c8978
Recoverable assets: NBU, GNBU.
-
NBU
-
GNBU
Tokens are (or will be) available to "unvest."
tokenContract.unvest();
To transfer these tokens, we need to look not at balanceOf
but availableForTransfer
. The entire balance may not be transferred; only as much as is marked "available."
const transferrableBalance = await tokenContract.availableForTransfer(
victimAddress
);
await tokenContract.transfer(recipientAddress, transferrableBalance);