deal

Signature

function deal(address who, uint256 newBalance) external;
function deal(address token, address to, uint256 give) external;
function deal(address token, address to, uint256 give, bool adjust) external;

Description

Sets the balance of an address who to newBalance.

If the alternative signature of deal is used, then we can additionaly specify ERC20 token address, as well as an option to update totalSupply.

Examples

address alice = address(1);
vm.deal(alice, 1 ether);
log_uint256(alice.balance); // 1000000000000000000
address alice = address(1);
deal(address(DAI), alice, 1 ether); // import StdUtils.sol first
log_uint256(address(DAI).balanceOf(alice); // 1000000000000000000

SEE ALSO

Forge Standard Library

deal, hoax, startHoax