Skip to content

Commit cb57ed2

Browse files
RahulMaganti47Rahul Maganti
and
Rahul Maganti
authored
evm: Update NTT token interface (#309)
* evm: add burn method to `INttTokenInterface` * evm: add natspec for errors and events * evm: document INTTToken interface methods * evm: add old minter to NewMinter event * evm: rename INTTToken -> INttToken --------- Co-authored-by: Rahul Maganti <rahulmaganti@rahuls-mbp.mynetworksettings.com>
1 parent 87bf873 commit cb57ed2

File tree

4 files changed

+43
-14
lines changed

4 files changed

+43
-14
lines changed

evm/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -244,3 +244,8 @@ bash sh/configure_wormhole_ntt.sh -n NETWORK_TYPE -c CHAIN_NAME -k PRIVATE_KEY
244244
-n testnet, mainnet
245245
-c avalanche, ethereum, sepolia
246246
```
247+
248+
#### Additional Notes
249+
Tokens powered by NTT in __burn__ mode require the `burn` method to be present. This method is not present in the standard ERC20 interface, but is found in the `ERC20Burnable` interface.
250+
251+
The `mint` and `setMinter` methods found in the [`INttToken` Interface](src/interfaces/INTTToken.sol) are not found in the standard `ERC20` interface.

evm/src/NttManager/NttManager.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import "wormhole-solidity-sdk/libraries/BytesParsing.sol";
1010
import "../libraries/RateLimiter.sol";
1111

1212
import "../interfaces/INttManager.sol";
13-
import "../interfaces/INTTToken.sol";
13+
import "../interfaces/INttToken.sol";
1414
import "../interfaces/ITransceiver.sol";
1515

1616
import {ManagerBase} from "./ManagerBase.sol";
@@ -455,7 +455,7 @@ contract NttManager is INttManager, RateLimiter, ManagerBase {
455455
IERC20(token).safeTransfer(recipient, untrimmedAmount);
456456
} else if (mode == Mode.BURNING) {
457457
// mint tokens to the specified recipient
458-
INTTToken(token).mint(recipient, untrimmedAmount);
458+
INttToken(token).mint(recipient, untrimmedAmount);
459459
} else {
460460
revert InvalidMode(uint8(mode));
461461
}

evm/src/interfaces/INTTToken.sol

-12
This file was deleted.

evm/src/interfaces/INttToken.sol

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

Comments
 (0)