DeBridgeToken
ERC20 token that is used as wrapped asset to represent the native token value on the other chains.
Variables
MINTER_ROLE
Minter role identifier
PAUSER_ROLE
Pauser role identifier
DOMAIN_SEPARATOR
Domain separator as described in EIP-712
PERMIT_TYPEHASH
Typehash as described in EIP-712. =keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
nonces
Transfers counter
_decimals
Asset's decimals
Functions
initialize
Constructor that initializes the most important configurations.
Parameters:
name_
string
Asset's name.
symbol_
string
Asset's symbol.
decimals_
uint8
Asset's decimals.
admin
address
Address to set as asset's admin.
minters
address[]
The accounts allowed to int new tokens.
mint
Issues new tokens.
Parameters:
_receiver
address
Token's receiver.
_amount
uint256
Amount to be minted.
burn
Destroys existing tokens.
Parameters:
_amount
uint256
Amount to be burnt.
permit
Approves the spender by signature.
Parameters:
_owner
address
Token's owner.
_spender
address
Account to be approved.
_value
uint256
Amount to be approved.
_deadline
uint256
The permit valid until.
_v
uint8
Signature part.
_r
bytes32
Signature part.
_s
bytes32
Signature part.
decimals
Asset's decimals
pause
Pauses all token transfers. The caller must have the PAUSER_ROLE
.
unpause
Unpauses all token transfers. The caller must have the PAUSER_ROLE
.
_beforeTokenTransfer
Last updated