Skip to content

Commit 93858c0

Browse files
authored
Merge branch 'master' into test-extcodehash
2 parents 3126fdc + 01a21d2 commit 93858c0

29 files changed

+1850
-1479
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
}

BUG_BOUNTY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ The leaderboard will list all the contributors to this bounty.
88

99
| Bug report | Severity | Researcher
1010
|-|-|-|
11-
| - | - | - |
11+
| #242 | Low severity | @sam-at-luther |
1212

1313
## Sponsors
1414

1515
**Sponsor this bug bounty if you support ERC-721**. This means you will commit to paying researchers that demonstrate a problem. Contact us at [[email protected]](mailto:[email protected]) if interested. Thank you.
1616

17-
[![0xcert](https://img.shields.io/badge/0xcert-50%20ETH-red.svg)](https://0xcert.org) [![William Entriken](https://img.shields.io/badge/William%20Entriken-5%20ETH-red.svg)](https://github.com/fulldecent) [![ERC-721 Bug Bounty Budget](https://img.shields.io/badge/ERC--721%20Bug%20Bounty%20Budget-55%20ETH-purple.svg)](https://etherscan.io/address/0xa2c60e9E1f6e6B2C16a6B8ECf3BdDAEf015C572b)
17+
[![0xcert](https://img.shields.io/badge/0xcert-10%20ETH-red.svg)](https://0xcert.org) [![William Entriken](https://img.shields.io/badge/William%20Entriken-2%20ETH-red.svg)](https://github.com/fulldecent) [![ERC-721 Bug Bounty Budget](https://img.shields.io/badge/ERC--721%20Bug%20Bounty%20Budget-12%20ETH-purple.svg)](https://etherscan.io/address/0xa2c60e9E1f6e6B2C16a6B8ECf3BdDAEf015C572b)
1818

1919
Become a sponsor and be listed here as a contributor to the bug bounty fund: `0xa2c60e9E1f6e6B2C16a6B8ECf3BdDAEf015C572b`.
2020

CONTRIBUTING.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@ The full style guide is available [here](https://github.com/0xcert/solidity-styl
1818

1919
The release manager is responsible to follow this process for each release of this project.
2020

21-
1. Confirm that the [version we reference](https://github.com/0xcert/ethereum-erc721/blob/master/src/contracts/math/safe-math.sol) for SafeMath is the [latest released version](https://github.com/0xcert/framework/tree/master/packages/0xcert-ethereum-utils-contracts/src/contracts/math).
22-
2. Summarize the changes and create a release using [GitHub releases](https://github.com/0xcert/solidity-style-guide/releases).
23-
3. Create a branch/pull request against https://github.com/0xcert/framework/tree/master/packages/0xcert-ethereum-erc721-contracts for any relevant changes since the last release here
21+
1. Summarize the changes and create a release using [GitHub releases](https://github.com/0xcert/solidity-style-guide/releases).
22+
2. Create a branch/pull request against https://github.com/0xcert/framework/tree/master/packages/0xcert-ethereum-erc721-contracts for any relevant changes since the last release here
2423

2524
```
2625
$ npm i

README.md

Lines changed: 1 addition & 2 deletions
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";
@@ -94,7 +94,6 @@ contract MyArtSale is
9494
* @dev Contract constructor. Sets metadata extension `name` and `symbol`.
9595
*/
9696
constructor()
97-
public
9897
{
9998
nftName = "Frank's Art Sale";
10099
nftSymbol = "FAS";

0 commit comments

Comments
 (0)