Skip to main content

IOsToken

Git Source

Inherits: IERC20, IERC20Metadata, IERC20Permit, IERC5267

Author: StakeWise

Defines the interface for the OsToken contract

Functions

controllers

Returns whether controller is registered or not

function controllers(address controller) external view returns (bool);

Parameters

NameTypeDescription
controlleraddressThe address of the controller

Returns

NameTypeDescription
<none>boolWhether the controller is registered or not

mint

Mint OsToken. Can only be called by the controller.

function mint(address account, uint256 value) external;

Parameters

NameTypeDescription
accountaddressThe address of the account to mint OsToken for
valueuint256The amount of OsToken to mint

burn

Burn OsToken. Can only be called by the controller.

function burn(address account, uint256 value) external;

Parameters

NameTypeDescription
accountaddressThe address of the account to burn OsToken for
valueuint256The amount of OsToken to burn

setController

Enable or disable the controller. Can only be called by the contract owner.

function setController(address controller, bool registered) external;

Parameters

NameTypeDescription
controlleraddressThe address of the controller
registeredboolWhether the controller is registered or not

Events

ControllerUpdated

Emitted when a controller is updated

event ControllerUpdated(address indexed controller, bool registered);

Parameters

NameTypeDescription
controlleraddressThe address of the controller
registeredboolWhether the controller is registered or not