ERC 777 Preset Fixed Supply

{ERC777} token, including: - Preminted initial supply - No access control mechanism (for minting/pausing) and hence no governance Available since v3.4.

Methods

allowance

function allowance(address holder, address spender) external view returns (uint256)

See {IERC20-allowance}. Note that operator and allowance concepts are orthogonal: operators may not have allowance, and accounts with allowance may not be operators themselves.

Parameters

NameTypeDescription

holder

address

undefined

spender

address

undefined

Returns

NameTypeDescription

_0

uint256

undefined

approve

function approve(address spender, uint256 value) external nonpayable returns (bool)

See {IERC20-approve}. Note that accounts cannot have allowance issued by their operators.

Parameters

NameTypeDescription

spender

address

undefined

value

uint256

undefined

Returns

NameTypeDescription

_0

bool

undefined

authorizeOperator

function authorizeOperator(address operator) external nonpayable

See {IERC777-authorizeOperator}.

Parameters

NameTypeDescription

operator

address

undefined

balanceOf

function balanceOf(address tokenHolder) external view returns (uint256)

Returns the amount of tokens owned by an account (tokenHolder).

Parameters

NameTypeDescription

tokenHolder

address

undefined

Returns

NameTypeDescription

_0

uint256

undefined

burn

function burn(uint256 amount, bytes data) external nonpayable

See {IERC777-burn}. Also emits a {IERC20-Transfer} event for ERC20 compatibility.

Parameters

NameTypeDescription

amount

uint256

undefined

data

bytes

undefined

decimals

function decimals() external pure returns (uint8)

See {ERC20-decimals}. Always returns 18, as per the ERC777 EIP.

Returns

NameTypeDescription

_0

uint8

undefined

defaultOperators

function defaultOperators() external view returns (address[])

See {IERC777-defaultOperators}.

Returns

NameTypeDescription

_0

address[]

undefined

granularity

function granularity() external view returns (uint256)

See {IERC777-granularity}. This implementation always returns 1.

Returns

NameTypeDescription

_0

uint256

undefined

isOperatorFor

function isOperatorFor(address operator, address tokenHolder) external view returns (bool)

See {IERC777-isOperatorFor}.

Parameters

NameTypeDescription

operator

address

undefined

tokenHolder

address

undefined

Returns

NameTypeDescription

_0

bool

undefined

name

function name() external view returns (string)

See {IERC777-name}.

Returns

NameTypeDescription

_0

string

undefined

operatorBurn

function operatorBurn(address account, uint256 amount, bytes data, bytes operatorData) external nonpayable

See {IERC777-operatorBurn}. Emits {Burned} and {IERC20-Transfer} events.

Parameters

NameTypeDescription

account

address

undefined

amount

uint256

undefined

data

bytes

undefined

operatorData

bytes

undefined

operatorSend

function operatorSend(address sender, address recipient, uint256 amount, bytes data, bytes operatorData) external nonpayable

See {IERC777-operatorSend}. Emits {Sent} and {IERC20-Transfer} events.

Parameters

NameTypeDescription

sender

address

undefined

recipient

address

undefined

amount

uint256

undefined

data

bytes

undefined

operatorData

bytes

undefined

revokeOperator

function revokeOperator(address operator) external nonpayable

See {IERC777-revokeOperator}.

Parameters

NameTypeDescription

operator

address

undefined

send

function send(address recipient, uint256 amount, bytes data) external nonpayable

See {IERC777-send}. Also emits a {IERC20-Transfer} event for ERC20 compatibility.

Parameters

NameTypeDescription

recipient

address

undefined

amount

uint256

undefined

data

bytes

undefined

symbol

function symbol() external view returns (string)

See {IERC777-symbol}.

Returns

NameTypeDescription

_0

string

undefined

totalSupply

function totalSupply() external view returns (uint256)

See {IERC777-totalSupply}.

Returns

NameTypeDescription

_0

uint256

undefined

transfer

function transfer(address recipient, uint256 amount) external nonpayable returns (bool)

See {IERC20-transfer}. Unlike send, recipient is not required to implement the {IERC777Recipient} interface if it is a contract. Also emits a {Sent} event.

Parameters

NameTypeDescription

recipient

address

undefined

amount

uint256

undefined

Returns

NameTypeDescription

_0

bool

undefined

transferFrom

function transferFrom(address holder, address recipient, uint256 amount) external nonpayable returns (bool)

See {IERC20-transferFrom}. Note that operator and allowance concepts are orthogonal: operators cannot call transferFrom (unless they have allowance), and accounts with allowance cannot call operatorSend (unless they are operators). Emits {Sent}, {IERC20-Transfer} and {IERC20-Approval} events.

Parameters

NameTypeDescription

holder

address

undefined

recipient

address

undefined

amount

uint256

undefined

Returns

NameTypeDescription

_0

bool

undefined

Events

Approval

event Approval(address indexed owner, address indexed spender, uint256 value)

Parameters

NameTypeDescription

owner indexed

address

undefined

spender indexed

address

undefined

value

uint256

undefined

AuthorizedOperator

event AuthorizedOperator(address indexed operator, address indexed tokenHolder)

Parameters

NameTypeDescription

operator indexed

address

undefined

tokenHolder indexed

address

undefined

Burned

event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData)

Parameters

NameTypeDescription

operator indexed

address

undefined

from indexed

address

undefined

amount

uint256

undefined

data

bytes

undefined

operatorData

bytes

undefined

Minted

event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData)

Parameters

NameTypeDescription

operator indexed

address

undefined

to indexed

address

undefined

amount

uint256

undefined

data

bytes

undefined

operatorData

bytes

undefined

RevokedOperator

event RevokedOperator(address indexed operator, address indexed tokenHolder)

Parameters

NameTypeDescription

operator indexed

address

undefined

tokenHolder indexed

address

undefined

Sent

event Sent(address indexed operator, address indexed from, address indexed to, uint256 amount, bytes data, bytes operatorData)

Parameters

NameTypeDescription

operator indexed

address

undefined

from indexed

address

undefined

to indexed

address

undefined

amount

uint256

undefined

data

bytes

undefined

operatorData

bytes

undefined

Transfer

event Transfer(address indexed from, address indexed to, uint256 value)

Parameters

NameTypeDescription

from indexed

address

undefined

to indexed

address

undefined

value

uint256

undefined

Last updated