Developer Guide
Tokens, and Token Factory
Tokens
The Tokens, and Token Factory developer guide will describe the following functions:
- Create a Token
- Mint revocable compliance tokens
- Transfer revocable compliance tokens
- Set Compliance for revocable compliance tokens
- 1
Mint revocable compliance tokens
Use IERC20RevocableCompliance interface's mint function to mint tokens.
function mint(address to, uint256 tokens) external;Parameters
to
Address to mint tokens.
tokens
Number of tokens to mint.
- 2
Transfer revocable compliance tokens
Use IERC20RevocableCompliance interface's transfer function to transfer tokens.
function transfer(address to, uint tokens) external returns (bool success);