Skip to content

Commit 8ecfc29

Browse files
authored
Merge pull request #264 from 0xcert/solidity-0.8.6
use Solidity 0.8.6 and bump some other deps
2 parents bea0474 + 388a02c commit 8ecfc29

24 files changed

+30
-30
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 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.8.0;
80+
pragma solidity 0.8.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: 7 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
@@ -72,7 +72,7 @@
7272
"@specron/flattener": "0.17.6",
7373
"@specron/spec": "0.17.6",
7474
"@types/node": "16.4.11",
75-
"solc": "0.8.0",
75+
"solc": "0.8.6",
7676
"solhint": "3.3.6",
7777
"ts-node": "10.1.0",
7878
"typescript": "4.3.5",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.0;
2+
pragma solidity 0.8.6;
33

44
import "../../contracts/tokens/nf-token-enumerable.sol";
55
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,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.0;
2+
pragma solidity 0.8.6;
33

44
import "../tokens/nf-token-metadata.sol";
55
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,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.0;
2+
pragma solidity 0.8.6;
33

44
import "../tokens/nf-token-metadata.sol";
55
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,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.0;
2+
pragma solidity 0.8.6;
33

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

src/contracts/ownership/ownable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.0;
2+
pragma solidity 0.8.6;
33

44
/**
55
* @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,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.0;
2+
pragma solidity 0.8.6;
33

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

src/contracts/tokens/erc721-metadata.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.0;
2+
pragma solidity 0.8.6;
33

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

0 commit comments

Comments
 (0)