mirror of
https://github.com/status-im/EIPs.git
synced 2025-01-27 15:15:03 +00:00
Switch to latest Solidity compiler
This commit is contained in:
parent
2b4971e3d3
commit
f8fcf194ff
@ -36,7 +36,7 @@ The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "S
|
|||||||
The **baseline specification** is REQUIRED for all ERC-721 implementations (subject to "caveats", below).
|
The **baseline specification** is REQUIRED for all ERC-721 implementations (subject to "caveats", below).
|
||||||
|
|
||||||
```solidity
|
```solidity
|
||||||
pragma solidity ^0.4.19;
|
pragma solidity ^0.4.20;
|
||||||
|
|
||||||
import "./ERC165.sol";
|
import "./ERC165.sol";
|
||||||
|
|
||||||
@ -152,11 +152,11 @@ interface ERC721Metadata {
|
|||||||
/// @notice A descriptive name for a collection of deeds managed by this
|
/// @notice A descriptive name for a collection of deeds managed by this
|
||||||
/// contract
|
/// contract
|
||||||
/// @dev Wallets and exchanges MAY display this to the end user.
|
/// @dev Wallets and exchanges MAY display this to the end user.
|
||||||
function name() public pure returns (string _name);
|
function name() external pure returns (string _name);
|
||||||
|
|
||||||
/// @notice An abbreviated name for deeds managed by this contract
|
/// @notice An abbreviated name for deeds managed by this contract
|
||||||
/// @dev Wallets and exchanges MAY display this to the end user.
|
/// @dev Wallets and exchanges MAY display this to the end user.
|
||||||
function symbol() public pure returns (string _symbol);
|
function symbol() external pure returns (string _symbol);
|
||||||
|
|
||||||
/// @notice A distinct URI (RFC 3986) for a given deed.
|
/// @notice A distinct URI (RFC 3986) for a given deed.
|
||||||
/// @dev If:
|
/// @dev If:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user