Skip to content

Commit

Permalink
remove custom dev comment with addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
girazoki committed Feb 13, 2024
1 parent 53e502c commit 478bee2
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion precompiles/balances-erc20/ERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion precompiles/batch/Batch.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion precompiles/call-permit/CallPermit.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion precompiles/xcm-utils/XcmUtils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 478bee2

Please sign in to comment.