IMachinePeriphery
Functions
initialize
Initializer of the contract.
function initialize(bytes calldata _data) external;
Parameters
Name | Type | Description |
---|---|---|
_data | bytes | The initialization data, if any. |
machine
Address of the associated machine.
function machine() external view returns (address);
setMachine
Sets the machine address.
function setMachine(address _machine) external;
Events
MachineSet
event MachineSet(address indexed machine);