BuilderWallet
State Variables
FACTORY
address public immutable FACTORY
builderAdmin
address public builderAdmin
Functions
constructor
constructor(address factory) ;
init
function init(address _builderAdmin) external;
sweep
function sweep(address token, address to) external;
Events
BuilderWalletInitialized
Emitted when the builder wallet is initialized
event BuilderWalletInitialized(address indexed builderAdmin);
Parameters
| Name | Type | Description |
|---|---|---|
builderAdmin | address | The address of the builder admin |
TokensSwept
Emitted when tokens are swept from the wallet
event TokensSwept(address indexed token, address indexed to, uint256 amount);
Parameters
| Name | Type | Description |
|---|---|---|
token | address | The address of the token swept |
to | address | The address that received the tokens |
amount | uint256 | The amount of tokens swept |