diff --git a/EIPS/eip-1155.md b/EIPS/eip-1155.md index a4248e35367e09..75a0e1f411ecef 100644 --- a/EIPS/eip-1155.md +++ b/EIPS/eip-1155.md @@ -34,7 +34,7 @@ The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "S **Smart contracts implementing the ERC-1155 standard MUST implement the `ERC1155` and `ERC165` interfaces.** ```solidity -pragma solidity ^0.5.8; +pragma solidity ^0.5.9; /** @title ERC-1155 Multi Token Standard @@ -151,7 +151,7 @@ interface ERC1155 /* is ERC165 */ { Smart contracts **MUST** implement this interface to accept transfers. See "Safe Transfer Rules" for further detail. ```solidity -pragma solidity ^0.5.8; +pragma solidity ^0.5.9; /** Note: The ERC-165 identifier for this interface is 0x43b236a2. @@ -398,7 +398,7 @@ The following optional extensions can be identified with the (ERC-165 Standard I Changes to the URI MUST emit the `URI` event if the change can be expressed with an event (i.e. it isn't dynamic). If the optional ERC1155Metadata_URI extension is included, the 'uri' function SHOULD be used to retrieve values for which no event was emitted. The function MUST return the same value as the event if it was emitted. ```solidity -pragma solidity ^0.5.8; +pragma solidity ^0.5.9; /** Note: The ERC-165 identifier for this interface is 0x0e89341c.