Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: revoxhere/duino-coin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: beta-3.1
Choose a base ref
...
head repository: revoxhere/duino-coin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 24,608 additions and 2,588 deletions.
  1. +128 −0 .github/CODE_OF_CONDUCT.md
  2. +1 −0 .github/FUNDING.yml
  3. +32 −0 .github/ISSUE_TEMPLATE/bug_report.md
  4. +20 −0 .github/ISSUE_TEMPLATE/feature_request.md
  5. +13 −0 .github/stale.yml
  6. +67 −0 .gitignore
  7. +1,382 −0 AVR_Miner.py
  8. +164 −0 Arduino_Code/Arduino_Code.ino
  9. +150 −0 Arduino_Code/duco_hash.cpp
  10. +19 −0 Arduino_Code/duco_hash.h
  11. +189 −0 Arduino_Code/uniqueID.cpp
  12. +106 −0 Arduino_Code/uniqueID.h
  13. +0 −204 Arduino_Miner.py
  14. +0 −85 Arduino_code/Arduino_code.ino
  15. +0 −42 Arduino_code/Hash.h
  16. +0 −32 Arduino_code/sha1.h
  17. +53 −0 ESP_Code/Counter.h
  18. +201 −0 ESP_Code/DSHA1.h
  19. +151 −0 ESP_Code/Dashboard.h
  20. +296 −0 ESP_Code/DisplayHal.h
  21. +818 −0 ESP_Code/ESP_Code.ino
  22. +432 −0 ESP_Code/MiningJob.h
  23. +226 −0 ESP_Code/Settings.h
  24. +1 −1 LICENSE
  25. +1,169 −0 Legacy codes/CLI_Wallet.py
  26. +1,024 −0 Legacy codes/ESP32_Code/ESP32_Code_3.5.ino
  27. +789 −0 Legacy codes/ESP8266_Code/ESP8266_Code_3.5.ino
  28. +2,671 −0 Legacy codes/Wallet.py
  29. +1,472 −315 PC_Miner.py
  30. +0 −312 Proof-of-Time_Miner.py
  31. +243 −105 README.md
  32. BIN Resources/AVRMiner.ico
  33. BIN Resources/AVRMiner.png
  34. +1,535 −0 Resources/AVR_Miner_langs.json
  35. +1,082 −0 Resources/CLI_Wallet_langs.json
  36. BIN Resources/NewArduinoMiner.ico
  37. BIN Resources/NewPCminer.ico
  38. BIN Resources/NewPoT.ico
  39. BIN Resources/NewWallet.ico
  40. BIN Resources/NewWebMiner.ico
  41. BIN Resources/NewWebMiner.png
  42. BIN Resources/Node.ico
  43. BIN Resources/Node.png
  44. +1 −0 Resources/OLD_LOGOS/.gitkeep
  45. BIN Resources/OLD_LOGOS/duco.png
  46. BIN Resources/OLD_LOGOS/ducoCovid.png
  47. BIN Resources/OLD_LOGOS/ducoValentine.png
  48. BIN Resources/OLD_LOGOS/oldbanner.png
  49. BIN Resources/PCMiner.ico
  50. BIN Resources/PCMiner.png
  51. +1,977 −0 Resources/PC_Miner_langs.json
  52. +265 −0 Resources/README_TRANSLATIONS/README-fr-FR.md
  53. +286 −0 Resources/README_TRANSLATIONS/README_cz_CZ.md
  54. +299 −0 Resources/README_TRANSLATIONS/README_de_DE.md
  55. +272 −0 Resources/README_TRANSLATIONS/README_es_LATAM.md
  56. +282 −0 Resources/README_TRANSLATIONS/README_fi_FI.md
  57. +260 −0 Resources/README_TRANSLATIONS/README_id_ID.md
  58. +293 −0 Resources/README_TRANSLATIONS/README_in_HI.md
  59. +271 −0 Resources/README_TRANSLATIONS/README_it_IT.md
  60. +283 −0 Resources/README_TRANSLATIONS/README_ja_JP.md
  61. +263 −0 Resources/README_TRANSLATIONS/README_kr_KR.md
  62. +246 −0 Resources/README_TRANSLATIONS/README_pl_PL.md
  63. +246 −0 Resources/README_TRANSLATIONS/README_pt_BR.md
  64. +242 −0 Resources/README_TRANSLATIONS/README_ru_RU.md
  65. +265 −0 Resources/README_TRANSLATIONS/README_sk_SK.md
  66. +251 −0 Resources/README_TRANSLATIONS/README_th_TH.md
  67. +233 −0 Resources/README_TRANSLATIONS/README_tr_TR.md
  68. +265 −0 Resources/README_TRANSLATIONS/README_zh_TW.md
  69. +2,204 −0 Resources/Wallet_langs.json
  70. BIN Resources/WebMiner.ico
  71. BIN Resources/WebMiner.png
  72. +19 −0 Resources/cli_wallet_commands.json
  73. BIN Resources/duco-alt.png
  74. BIN Resources/duco.ico
  75. BIN Resources/duco.png
  76. BIN Resources/duco_200x200.png
  77. BIN Resources/duco_square.png
  78. BIN Resources/ducobanner.png
  79. BIN Resources/explorer.png
  80. BIN Resources/wave.png
  81. +0 −680 Server.py
  82. +62 −0 Tools/duco-install-rpi.sh
  83. +12 −0 Tools/linux-device-paths
  84. +10 −0 Tools/update.sh
  85. +40 −0 Tools/upload-sketch.py
  86. +0 −109 Unofficial miners/AutoIT Miner.au3
  87. +0 −1 Unofficial miners/Disclaimer.txt
  88. +38 −0 Unofficial miners/Julia_Miner.jl
  89. +125 −52 Unofficial miners/Minimal_PC_Miner.py
  90. +270 −0 Unofficial miners/Multithreaded_PC_Miner.py
  91. +4 −0 Unofficial miners/README.md
  92. +80 −0 Unofficial miners/Ruby_Miner.rb
  93. +5 −0 Unofficial miners/STM32/.gitignore
  94. +7 −0 Unofficial miners/STM32/.vscode/extensions.json
  95. +17 −0 Unofficial miners/STM32/.vscode/tasks.json
  96. +22 −0 Unofficial miners/STM32/README.md
  97. +39 −0 Unofficial miners/STM32/include/README
  98. +86 −0 Unofficial miners/STM32/platformio.ini
  99. +181 −0 Unofficial miners/STM32/src/main.cpp
  100. +299 −0 Unofficial miners/STM32/src/sha1.h
  101. +11 −0 Unofficial miners/STM32/test/README
  102. +137 −0 Unofficial miners/Teensy_code/Teensy_code.ino
  103. +0 −650 Wallet.py
  104. +6 −0 requirements.txt
128 changes: 128 additions & 0 deletions .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
# Contributor Covenant Code of Conduct

## Our Pledge

We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
nationality, personal appearance, race, religion, or sexual identity
and orientation.

We pledge to act and interact in ways that contribute to an open, welcoming,
diverse, inclusive, and healthy community.

## Our Standards

Examples of behavior that contributes to a positive environment for our
community include:

* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
* Focusing on what is best not just for us as individuals, but for the
overall community

Examples of unacceptable behavior include:

* The use of sexualized language or imagery, and sexual attention or
advances of any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email
address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting

## Enforcement Responsibilities

Community leaders are responsible for clarifying and enforcing our standards of
acceptable behavior and will take appropriate and fair corrective action in
response to any behavior that they deem inappropriate, threatening, offensive,
or harmful.

Community leaders have the right and responsibility to remove, edit, or reject
comments, commits, code, wiki edits, issues, and other contributions that are
not aligned to this Code of Conduct, and will communicate reasons for moderation
decisions when appropriate.

## Scope

This Code of Conduct applies within all community spaces, and also applies when
an individual is officially representing the community in public spaces.
Examples of representing our community include using an official e-mail address,
posting via an official social media account, or acting as an appointed
representative at an online or offline event.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
robik123.345@gmail.com.
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
reporter of any incident.

## Enforcement Guidelines

Community leaders will follow these Community Impact Guidelines in determining
the consequences for any action they deem in violation of this Code of Conduct:

### 1. Correction

**Community Impact**: Use of inappropriate language or other behavior deemed
unprofessional or unwelcome in the community.

**Consequence**: A private, written warning from community leaders, providing
clarity around the nature of the violation and an explanation of why the
behavior was inappropriate. A public apology may be requested.

### 2. Warning

**Community Impact**: A violation through a single incident or series
of actions.

**Consequence**: A warning with consequences for continued behavior. No
interaction with the people involved, including unsolicited interaction with
those enforcing the Code of Conduct, for a specified period of time. This
includes avoiding interactions in community spaces as well as external channels
like social media. Violating these terms may lead to a temporary or
permanent ban.

### 3. Temporary Ban

**Community Impact**: A serious violation of community standards, including
sustained inappropriate behavior.

**Consequence**: A temporary ban from any sort of interaction or public
communication with the community for a specified period of time. No public or
private interaction with the people involved, including unsolicited interaction
with those enforcing the Code of Conduct, is allowed during this period.
Violating these terms may lead to a permanent ban.

### 4. Permanent Ban

**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.

**Consequence**: A permanent ban from any sort of public interaction within
the community.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage],
version 2.0, available at
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.

Community Impact Guidelines were inspired by [Mozilla's code of conduct
enforcement ladder](https://github.com/mozilla/diversity).

[homepage]: https://www.contributor-covenant.org

For answers to common questions about this code of conduct, see the FAQ at
https://www.contributor-covenant.org/faq. Translations are available at
https://www.contributor-covenant.org/translations.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
custom: ['https://duinocoin.com/donate', 'https://paypal.me/revoxhere']
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots/photos**
If applicable, add screenshots or photos to help explain your problem.

**System (please complete the following information):**
- OS: [e.g. Windows]
- Software [e.g. AVR Miner]
- Version [e.g. 2.4]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
13 changes: 13 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 14
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 3
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: true
67 changes: 67 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Duino-Coin resources folders
Wallet_*/
PCMiner_*/
AVRMiner_*/
Duino-Coin PC Miner */
Duino-Coin AVR Miner */

# Byte-compiled and optimized files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution and packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test and coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
.python-version

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
Loading