diff --git a/CHANGELOG.md b/CHANGELOG.md index ff7babd69..0b657a6b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # CHANGELOG +## 0.5.1 Feb 15, 2021 + +Contributed: + +- Added polkadot-event.com, polkadot-support.com, polkadot-js.online, claimpolka.live (Thanks to https://github.com/laboon) +- Added polkadots.live (Thanks to https://github.com/SimonKraus) +- Added polkadotairdrop.com (Thanks to https://github.com/NukeManDan) +- Added polkadot-get.com, polkadot-promo.info (Thanks to https://github.com/BraveSam) +- Add known historic phishing addresses (Thanks to https://github.com/jackesky) +- Added non-threat simpleswap.io to known checks https://github.com/dud1337) + +Changes: + +- JSON files & index page published to IPNS, https://ipfs.io/ipns/phishing.dotapps.io +- Add list of known phishing addresses under `address.json` +- Add a CI check against known sites for addresses (as changed) +- Add known phishing addresses not via sites (e.g. Youtube scam links) + + ## 0.4.1 Jan 24, 2021 Contributed: diff --git a/README.md b/README.md index df23d9817..3b61ab788 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ To add a new scam address (typically per site), edit [address.json](https://gith Making additions to the list will be reflected on merge at [polkadot.js.org/phishing/all.json](https://polkadot.js.org/phishing/all.json) & [polkadot.js.org/phishing/address.json](https://polkadot.js.org/phishing/address.json). These can be consumed via [@polkadot/phishing](https://github.com/polkadot-js/phishing/tree/master/packages/phishing) and other tools capable of parsing JSON. +The `{address, all}.json` files are also published to IPFS, via [ipns/phishing.dotapps.io](https://ipfs.io/ipns/phishing.dotapps.io/). Libraries can also consume from here for a decentralized approach. + ### Integration diff --git a/package.json b/package.json index 5c930e9dc..f730f4d6d 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "@polkadot/dev": "^0.61.25", "@types/jest": "^26.0.20" }, - "version": "0.4.52", + "version": "0.5.0", "dependencies": { "@pinata/sdk": "^1.1.11", "dnslink-cloudflare": "^3.0.0" diff --git a/packages/phishing/package.json b/packages/phishing/package.json index 34e2be3f5..e5b38c3d9 100644 --- a/packages/phishing/package.json +++ b/packages/phishing/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/phishing", - "version": "0.4.52", + "version": "0.5.0", "description": "Simple phishing scripts from a central source", "main": "index.js", "sideEffects": false, diff --git a/packages/unused/package.json b/packages/unused/package.json index 0e3fd5e90..89d233daf 100644 --- a/packages/unused/package.json +++ b/packages/unused/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/unused", - "version": "0.4.52", + "version": "0.5.0", "description": "Dummy", "main": "index.js", "author": "Jaco Greeff ",