Skip to content

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0xGh committed Dec 31, 2023
1 parent f9cfc52 commit b080944
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion contracts/ERC721Baseline.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {IERC721Baseline} from "./IERC721Baseline.sol";

/**
* @title ERC721Baseline
* @custom:version v0.1.0-alpha.10
* @custom:version v0.1.0
* @notice A minimal proxy contract for ERC721BaselineImplementation.
*
* @dev ERC721BaselineImplementation uses ERC-7201 (Namespaced Storage Layout)
Expand Down
4 changes: 2 additions & 2 deletions contracts/ERC721BaselineImplementation.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {Utils} from "./Utils.sol";

/**
* @title ERC721BaselineImplementation
* @custom:version v0.1.0-alpha.10
* @custom:version v0.1.0
* @notice A baseline ERC721 contract implementation that exposes internal methods to a proxy instance.
*/
contract ERC721BaselineImplementation is ERC721Upgradeable, IERC721Baseline {
Expand Down Expand Up @@ -90,7 +90,7 @@ contract ERC721BaselineImplementation is ERC721Upgradeable, IERC721Baseline {
}

constructor() {
_getStorage().VERSION = "0.1.0-alpha.10";
_getStorage().VERSION = "0.1.0";
_disableInitializers();
}

Expand Down
2 changes: 1 addition & 1 deletion contracts/IERC721Baseline.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {IERC2981} from "@openzeppelin/contracts/interfaces/IERC2981.sol";

/**
* @title IERC721Baseline
* @custom:version v0.1.0-alpha.10
* @custom:version v0.1.0
* @notice A baseline ERC721 contract implementation that exposes internal methods to a proxy instance.
*/
interface IERC721Baseline is IERC721, IERC2981 {
Expand Down
2 changes: 1 addition & 1 deletion contracts/Utils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity 0.8.21;

/**
* @title Utils
* @custom:version v0.1.0-alpha.10
* @custom:version v0.1.0
* @notice Utilities used in ERC721Baseline.
*/
library Utils {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "erc721baseline",
"version": "0.1.0-alpha.10",
"version": "0.1.0",
"description": "A baseline ERC721 contract implementation that exposes internal methods to a proxy instance",
"files": [
"contracts/*.sol",
Expand Down
17 changes: 9 additions & 8 deletions truffle-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,16 @@ module.exports = {
// Configure your compilers
compilers: {
solc: {
version: "0.8.21", // Fetch exact version from solc-bin (default: truffle's version)
version: "0.8.21", // Fetch exact version from solc-bin (default: truffle's version)
// docker: true, // Use "0.5.1" you've installed locally with docker (default: false)
// settings: { // See the solidity docs for advice about optimization and evmVersion
// optimizer: {
// enabled: false,
// runs: 200
// },
// evmVersion: "byzantium"
// }
settings: {
// See the solidity docs for advice about optimization and evmVersion
optimizer: {
enabled: true,
runs: 20000,
},
evmVersion: "shanghai",
},
},
},

Expand Down

0 comments on commit b080944

Please sign in to comment.