Skip to content

Commit 98c892f

Browse files
committed
Update solidity to 0.8.0.
1 parent c4e810d commit 98c892f

26 files changed

+150
-257
lines changed

.solhint.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
{
22
"extends": "solhint:default",
33
"rules": {
4-
"indent": ["error", 2],
5-
"bracket-align": "off",
6-
"two-lines-top-level-separator": "off",
7-
"max-line-length": 100
4+
"max-line-length": ["warn", 100]
85
}
96
}

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 below 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.6.2;
80+
pragma solidity 0.8.0;
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: 98 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@
7272
"@specron/flattener": "0.15.1",
7373
"@specron/spec": "0.15.1",
7474
"@types/node": "13.7.0",
75-
"solc": "0.6.2",
76-
"solhint": "2.3.0",
75+
"solc": "0.8.0",
76+
"solhint": "3.3.2",
7777
"ts-node": "8.6.2",
7878
"typescript": "3.7.5",
7979
"web3": "1.2.5-rc.0"

0 commit comments

Comments
 (0)