From 0c73c8e4cc97304ea8b5fb828e531b1bbc642107 Mon Sep 17 00:00:00 2001 From: user Date: Sun, 1 Mar 2026 10:21:17 -0800 Subject: [PATCH] docs: add third-party file attribution to LICENSE and README --- LICENSE | 107 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 15 ++++++++ 2 files changed, 122 insertions(+) diff --git a/LICENSE b/LICENSE index f288702..f8a0f60 100644 --- a/LICENSE +++ b/LICENSE @@ -672,3 +672,110 @@ may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . + +=========================================================================== +THIRD-PARTY FILES +=========================================================================== + +The following files are not original to this project and are distributed +under their own licenses. They are NOT covered by the GPL-3.0 license above. + +--------------------------------------------------------------------------- +File: src/shared/phishingBlocklist.json +Source: https://github.com/AugurProject/eth-phishing-detect (config.json) +Copyright: Copyright (c) 2018 kumavis +License: Don't Be a Dick Public License (DBAD), Version 1.2 +--------------------------------------------------------------------------- + +DON'T BE A DICK PUBLIC LICENSE + +Version 1.2, February 2021 + +Copyright (C) 2018 kumavis + +Everyone is permitted to copy and distribute verbatim or modified +copies of this license document. + +DON'T BE A DICK PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 1. Do whatever you like with the original work, just don't be a dick. + + Being a dick includes - but is not limited to - the following instances: + + 1a. Outright copyright infringement - Don't just copy the original + work/works and change the name. + 1b. Selling the unmodified original with no work done what-so-ever, + that's REALLY being a dick. + 1c. Modifying the original work to contain hidden harmful content. + That would make you a PROPER dick. + + 2. If you become rich through modifications, related works/services, or + supporting the original work, share the love. Only a dick would make + loads off this work and not buy the original work's creator(s) a pint. + + 3. Code is provided with no warranty. Using somebody else's code and + bitching when it goes wrong makes you a DONKEY dick. Fix the problem + yourself. A non-dick would submit the fix back or submit a bug report. + + 4. If you use code, calling it your own would make you a ROYAL dick. + Alternatively, even just a comment giving attribution to where you found + the code would be OK. + +--------------------------------------------------------------------------- +File: src/shared/scamlist.js (address data from MyEtherWallet ethereum-lists) +Source: https://github.com/MyEtherWallet/ethereum-lists (addresses-darklist.json) +Copyright: Copyright (c) 2020 MyEtherWallet +License: MIT License +--------------------------------------------------------------------------- + +MIT License + +Copyright (c) 2020 MyEtherWallet + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--------------------------------------------------------------------------- +File: src/shared/scamlist.js (address data from EtherScamDB) +Source: https://github.com/MrLuit/EtherScamDB (scams.yaml) +Copyright: Copyright (c) 2018 Luit Hollander +License: MIT License +--------------------------------------------------------------------------- + +MIT License + +Copyright (c) 2018 Luit Hollander + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 07e27e4..6556c5d 100644 --- a/README.md +++ b/README.md @@ -884,6 +884,21 @@ Currently supported: GPL-3.0. See [LICENSE](LICENSE). +### Third-Party Data Files + +This repository includes data files from third-party projects that are not +covered by the GPL-3.0 license above. These files, their copyright holders, and +their licenses are: + +| File | Source | Copyright | License | +| ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | --------------------------------- | -------------------------------------------------------------- | +| `src/shared/phishingBlocklist.json` | [eth-phishing-detect](https://github.com/AugurProject/eth-phishing-detect) community-maintained phishing domain blocklist | Copyright (c) 2018 kumavis | [DBAD (Don't Be a Dick)](https://github.com/philsturgeon/dbad) | +| `src/shared/scamlist.js` (address data from MyEtherWallet) | [ethereum-lists](https://github.com/MyEtherWallet/ethereum-lists) `addresses-darklist.json` | Copyright (c) 2020 MyEtherWallet | MIT | +| `src/shared/scamlist.js` (address data from EtherScamDB) | [EtherScamDB](https://github.com/MrLuit/EtherScamDB) `scams.yaml` | Copyright (c) 2018 Luit Hollander | MIT | + +The full license texts for these third-party files are included in the +[LICENSE](LICENSE) file. + ## Author [@sneak](https://sneak.berlin)