Initializable
Last updated
Was this helpful?
Alluvial Finance Inc.
Initializable
This contract ensures that initializers are called only once per version
event Initialize(uint256 version, bytes cdata)Emitted when the contract is properly initialized
version
uint256
New version of the contracts
cdata
bytes
Complete calldata that was used during the initialization
error InvalidInitialization(uint256 version, uint256 expectedVersion)An error occurred during the initialization
version
uint256
The version that was attempting to be initialized
expectedVersion
uint256
The version that was expected
Last updated
Was this helpful?
Was this helpful?