Skip to main content

IMachinePeriphery

Git Source

Functions

initialize

Initializer of the contract.

function initialize(bytes calldata _data) external;

Parameters

NameTypeDescription
_databytesThe 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);