|
| 1 | +// SPDX-License-Identifier: Apache 2 |
| 2 | +pragma solidity >=0.8.8 <0.9.0; |
| 3 | + |
| 4 | +interface INttToken { |
| 5 | + /// @notice Error when the caller is not the minter. |
| 6 | + /// @dev Selector 0x5fb5729e. |
| 7 | + /// @param caller The caller of the function. |
| 8 | + error CallerNotMinter(address caller); |
| 9 | + |
| 10 | + /// @notice Error when the minter is the zero address. |
| 11 | + /// @dev Selector 0x04a208c7. |
| 12 | + error InvalidMinterZeroAddress(); |
| 13 | + |
| 14 | + /// @notice Error when insufficient balance to burn the amount. |
| 15 | + /// @dev Selector 0xcf479181. |
| 16 | + /// @param balance The balance of the account. |
| 17 | + /// @param amount The amount to burn. |
| 18 | + error InsufficientBalance(uint256 balance, uint256 amount); |
| 19 | + |
| 20 | + /// @notice The minter has been changed. |
| 21 | + /// @dev Topic0 |
| 22 | + /// 0x0b5e7be615a67a819aff3f47c967d1535cead1b98db60fafdcbf22dcaa8fa5a9. |
| 23 | + /// @param newMinter The new minter. |
| 24 | + event NewMinter(address previousMinter, address newMinter); |
| 25 | + |
| 26 | + // NOTE: the `mint` method is not present in the standard ERC20 interface. |
| 27 | + function mint(address account, uint256 amount) external; |
| 28 | + |
| 29 | + // NOTE: the `setMinter` method is not present in the standard ERC20 interface. |
| 30 | + function setMinter(address newMinter) external; |
| 31 | + |
| 32 | + // NOTE: NttTokens in `burn` mode require the `burn` method to be present. |
| 33 | + // This method is not present in the standard ERC20 interface, but is |
| 34 | + // found in the `ERC20Burnable` interface. |
| 35 | + function burn(uint256 amount) external; |
| 36 | +} |
0 commit comments