Skip to content

Commit 9c1cbf2

Browse files
committed
Update solidity version
1 parent 4d90132 commit 9c1cbf2

23 files changed

+38
-29
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ You have created and have possession of unique glass-blown artwork (each having
7777
To do this, simply paste the code belowe into Remix and deploy the smart contract. You will "mint" a token for each new piece of artwork you want to see. Then you will "burn" that token when you surrender physical possession of the piece.
7878

7979
```solidity
80-
pragma solidity 0.5.2;
80+
pragma solidity 0.5.6;
8181
8282
import "https://github.com/0xcert/ethereum-erc721/src/contracts/tokens/nf-token-metadata.sol";
8383
import "https://github.com/0xcert/ethereum-erc721/src/contracts/ownership/ownable.sol";

package-lock.json

Lines changed: 16 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"devDependencies": {
6161
"@specron/cli": "^0.5.1",
6262
"@specron/spec": "^0.5.1",
63-
"solc": "^0.5.2",
63+
"solc": "^0.5.6",
6464
"solhint": "^1.4.1",
6565
"ts-node": "^7.0.1",
6666
"typescript": "^3.2.2",

src/contracts/math/safe-math.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity 0.5.2;
1+
pragma solidity 0.5.6;
22

33
/**
44
* @dev Math operations with safety checks that throw on error. This contract is based on the

src/contracts/mocks/nf-token-enumerable-mock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity 0.5.2;
1+
pragma solidity 0.5.6;
22

33
import "../../contracts/tokens/nf-token-enumerable.sol";
44
import "../ownership/ownable.sol";

src/contracts/mocks/nf-token-metadata-enumerable-mock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity 0.5.2;
1+
pragma solidity 0.5.6;
22

33
import "../tokens/nf-token-metadata.sol";
44
import "../tokens/nf-token-enumerable.sol";

src/contracts/mocks/nf-token-metadata-mock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity 0.5.2;
1+
pragma solidity 0.5.6;
22

33
import "../tokens/nf-token-metadata.sol";
44
import "../ownership/ownable.sol";

src/contracts/mocks/nf-token-mock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity 0.5.2;
1+
pragma solidity 0.5.6;
22

33
import "../../contracts/tokens/nf-token.sol";
44
import "../ownership/ownable.sol";

src/contracts/ownership/ownable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity 0.5.2;
1+
pragma solidity 0.5.6;
22

33
/**
44
* @dev The contract has an owner address, and provides basic authorization control whitch

src/contracts/tokens/erc721-enumerable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity 0.5.2;
1+
pragma solidity 0.5.6;
22

33
/**
44
* @dev Optional enumeration extension for ERC-721 non-fungible token standard.

0 commit comments

Comments
 (0)