proxy docs

RigoblockPoolProxy

_IMPLEMENTATION_SLOT

bytes32 _IMPLEMENTATION_SLOT

constructor

constructor() public payable

Sets address of implementation contract.

fallback

fallback() external payable

Fallback function forwards all transactions and returns all received return data.

ImplementationSlot

struct ImplementationSlot {
  address implementation;
}

getImplementation

function getImplementation() private pure returns (struct RigoblockPoolProxy.ImplementationSlot s)

Method to read/write from/to implementation slot.

Return Values

NameTypeDescription

s

struct RigoblockPoolProxy.ImplementationSlot

Storage slot of the pool implementation.

Last updated