From 478bee2b0311bcec7c696cdb2845b73a1865d11b Mon Sep 17 00:00:00 2001 From: girazoki Date: Tue, 13 Feb 2024 11:52:16 +0100 Subject: [PATCH] remove custom dev comment with addresses --- precompiles/balances-erc20/ERC20.sol | 1 - precompiles/batch/Batch.sol | 1 - precompiles/call-permit/CallPermit.sol | 1 - precompiles/xcm-utils/XcmUtils.sol | 1 - 4 files changed, 4 deletions(-) diff --git a/precompiles/balances-erc20/ERC20.sol b/precompiles/balances-erc20/ERC20.sol index 454506d..1f5e3f5 100644 --- a/precompiles/balances-erc20/ERC20.sol +++ b/precompiles/balances-erc20/ERC20.sol @@ -4,7 +4,6 @@ pragma solidity >=0.8.3; /// @title ERC20 interface /// @dev see https://github.com/ethereum/EIPs/issues/20 /// @dev copied from https://github.com/OpenZeppelin/openzeppelin-contracts -/// @custom:address 0x0000000000000000000000000000000000000802 interface IERC20 { /// @dev Returns the name of the token. /// @custom:selector 06fdde03 diff --git a/precompiles/batch/Batch.sol b/precompiles/batch/Batch.sol index d7214cf..a5f9b13 100644 --- a/precompiles/batch/Batch.sol +++ b/precompiles/batch/Batch.sol @@ -5,7 +5,6 @@ pragma solidity >=0.8.3; /// @title Batch precompile /// @dev Allows to perform multiple calls throught one call to the precompile. /// Can be used by EOA to do multiple calls in a single transaction. -/// @custom:address 0x0000000000000000000000000000000000000808 interface Batch { /// @dev Batch multiple calls into a single transaction. /// All calls are performed from the address calling this precompile. diff --git a/precompiles/call-permit/CallPermit.sol b/precompiles/call-permit/CallPermit.sol index a999a69..91713af 100644 --- a/precompiles/call-permit/CallPermit.sol +++ b/precompiles/call-permit/CallPermit.sol @@ -5,7 +5,6 @@ pragma solidity >=0.8.3; /// @title Call Permit Interface /// @dev The interface aims to be a general-purpose tool to perform gas-less transactions. It uses the EIP-712 standard, /// and signed messages can be dispatched by another network participant with a transaction -/// @custom:address 0x000000000000000000000000000000000000080a interface CallPermit { /// @dev Dispatch a call on the behalf of an other user with a EIP712 permit. /// Will revert if the permit is not valid or if the dispatched call reverts or errors (such as diff --git a/precompiles/xcm-utils/XcmUtils.sol b/precompiles/xcm-utils/XcmUtils.sol index 85b0452..34e8c00 100644 --- a/precompiles/xcm-utils/XcmUtils.sol +++ b/precompiles/xcm-utils/XcmUtils.sol @@ -4,7 +4,6 @@ pragma solidity >=0.8.3; /// @author The Moonbeam Team /// @title Xcm Utils Interface /// The interface through which solidity contracts will interact with xcm utils pallet -/// @custom:address 0x000000000000000000000000000000000000080C interface XcmUtils { // A multilocation is defined by its number of parents and the encoded junctions (interior) struct Multilocation {