diff --git a/contracts/src/TokenHome/NativeTokenHomeUpgradeable.sol b/contracts/src/TokenHome/NativeTokenHomeUpgradeable.sol index 94d33fa..2f4098e 100644 --- a/contracts/src/TokenHome/NativeTokenHomeUpgradeable.sol +++ b/contracts/src/TokenHome/NativeTokenHomeUpgradeable.sol @@ -20,7 +20,7 @@ import {Address} from "@openzeppelin/contracts@5.0.2/utils/Address.sol"; import {ICTTInitializable} from "../utils/ICTTInitializable.sol"; /** - * @title NativeTokenHome + * @title NativeTokenHomeUpgradeable * @notice An {INativeTokenHome} implementation that locks the native token of this chain to be transferred to * TokenRemote instances on other chains. * @custom:security-contact https://github.com/ava-labs/avalanche-interchain-token-transfer/blob/main/SECURITY.md diff --git a/contracts/src/TokenRemote/ERC20TokenRemoteUpgradeable.sol b/contracts/src/TokenRemote/ERC20TokenRemoteUpgradeable.sol index bf95225..dea666b 100644 --- a/contracts/src/TokenRemote/ERC20TokenRemoteUpgradeable.sol +++ b/contracts/src/TokenRemote/ERC20TokenRemoteUpgradeable.sol @@ -22,7 +22,7 @@ import {CallUtils} from "../utils/CallUtils.sol"; import {ICTTInitializable} from "../utils/ICTTInitializable.sol"; /** - * @title ERC20TokenRemote + * @title ERC20TokenRemoteUpgradeable * @notice This contract is an {IERC20TokenTransferrer} that receives tokens from its specifed {TokenHome} instance, * and represents the received tokens with an ERC20 token on this chain. * @custom:security-contact https://github.com/ava-labs/avalanche-interchain-token-transfer/blob/main/SECURITY.md diff --git a/contracts/src/TokenRemote/NativeTokenRemoteUpgradeable.sol b/contracts/src/TokenRemote/NativeTokenRemoteUpgradeable.sol index ec60b6a..a907ef5 100644 --- a/contracts/src/TokenRemote/NativeTokenRemoteUpgradeable.sol +++ b/contracts/src/TokenRemote/NativeTokenRemoteUpgradeable.sol @@ -31,7 +31,7 @@ import {SafeERC20TransferFrom} from "../utils/SafeERC20TransferFrom.sol"; import {ICTTInitializable} from "../utils/ICTTInitializable.sol"; /** - * @title NativeTokenRemote + * @title NativeTokenRemoteUpgradeable * @notice This contract is an {INativeTokenRemote} that receives tokens from its specifed {TokenHome} instance, * and represents the received tokens as the native token on this chain. * @custom:security-contact https://github.com/ava-labs/avalanche-interchain-token-transfer/blob/main/SECURITY.md