Module ethereum_serai::deployer::abi
source · Expand description
Module containing a contract’s types and functions.
contract Deployer {
event Deployment(bytes32 indexed init_code_hash, address created);
error DeploymentFailed();
function deploy(bytes memory init_code) external { <stmts> }
}
Structs§
- Event with signature
Deployment(bytes32,address)
and selector0x60b877a3bae7bf0f0bd5e1c40ebf44ea158201397f6b72d7c05360157b1ec0fc
. - Custom error with signature
DeploymentFailed()
and selector0x30116425
. - Function with signature
deploy(bytes)
and selector0x00774360
. - Container type for the return parameters of the
deploy(bytes)
function.