|
6 年之前 | |
---|---|---|
.. | ||
ERC20.sol | 6 年之前 | |
ERC20Burnable.sol | 6 年之前 | |
ERC20Capped.sol | 6 年之前 | |
ERC20Detailed.sol | 6 年之前 | |
ERC20Mintable.sol | 6 年之前 | |
ERC20Pausable.sol | 6 年之前 | |
IERC20.sol | 6 年之前 | |
README.md | 6 年之前 | |
SafeERC20.sol | 6 年之前 | |
TokenTimelock.sol | 6 年之前 |
sections:
This set of interfaces, contracts, and utilities are all related to the ERC20 Token Standard.
For a walkthrough on how to create an ERC20 token read our ERC20 guide.
There a few core contracts that implement the behavior specified in the EIP: IERC20
, ERC20
, ERC20Detailed
.
Additionally there are multiple extensions, including:
ERC20Mintable
), with an optional maximum cap (ERC20Capped
),ERC20Burnable
),ERC20Pausable
).Finally, there are some utilities to interact with ERC20 contracts in various ways.
SafeERC20
is a wrapper around the interface that eliminates the need to handle boolean return values.TokenTimelock
can hold tokens for a beneficiary until a specified time.This page is incomplete. We're working to improve it for the next release. Stay tuned!