Commit 8c189ba2 authored by sam-goldman's avatar sam-goldman Committed by GitHub

nft: add view keyword to functions in `IOptimismMintableERC721` (#3496)

Co-authored-by: default avatarmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
parent 67b4cd85
......@@ -30,17 +30,17 @@ interface IOptimismMintableERC721 is IERC721Enumerable {
/**
* @notice Chain ID of the chain where the remote token is deployed.
*/
function remoteChainId() external returns (uint256);
function remoteChainId() external view returns (uint256);
/**
* @notice Address of the token on the remote domain.
*/
function remoteToken() external returns (address);
function remoteToken() external view returns (address);
/**
* @notice Address of the ERC721 bridge on this network.
*/
function bridge() external returns (address);
function bridge() external view returns (address);
/**
* @notice Mints some token ID for a user.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment