Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 715 Bytes

token-controller.md

File metadata and controls

57 lines (36 loc) · 715 Bytes
description
description

Token Controller

Read Methods

Unlock Role

description

function UNLOCK_ROLE() external pure returns (bytes32);

Unlocked

description

 function unlocked() external view returns (bool);

Can Transfer

description

function canTransfer(address from, address to, uint256 amount) external view returns (bool);

Write Methods

Unlock

description

function unlock() external

Lock

description

 function lock() external;

Handle Transfer

description

 function handleTransfer(IKEI.Snapshot memory k, address from, address to, uint256 amount) external