-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
15,363 additions
and
2,476 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,7 @@ Every time an stratum job notification is received miner update its current work | |
- LILYGO T-Dongle S3 ([Aliexpress link\*](https://s.click.aliexpress.com/e/_DmQCPyj)) | ||
- ESP32-2432S028R 2,8" ([Aliexpress link\*](https://s.click.aliexpress.com/e/_DdXkvLv) / Dev support: @nitroxgas / ⚡[email protected]) | ||
- ESP32-cam ([Board Info](https://lastminuteengineers.com/getting-started-with-esp32-cam/) / Dev support: @elmo128) | ||
- M5-StampS3 ([Aliexpress link\*](https://s.click.aliexpress.com/e/_DevABY3) / Dev support: @gyengus) | ||
|
||
\*Affiliate links | ||
|
||
|
@@ -61,7 +62,7 @@ Every time an stratum job notification is received miner update its current work | |
Easyiest way to flash firmware. Build your own miner using the folowing firwmare flash tool: | ||
|
||
1. Get a TTGO T-display S3 or any other supported board | ||
1. Go to NM2 flasher online: https://bitmaker-hub.github.io/diyflasher/ | ||
1. Go to NM2 flasher online: https://flasher.bitronics.store/ | ||
|
||
#### Standard tool | ||
|
||
|
@@ -130,7 +131,8 @@ Recommended low difficulty share pools: | |
| public-pool.io | 21496 | https://web.public-pool.io | Open Source Solo Bitcoin Mining Pool supporting open source miners | | ||
| nerdminers.org | | https://nerdminers.org | Team domain for future pool - Currently pointing to public-pool.io | | ||
| pool.nerdminer.io | 3333 | https://nerdminer.io | Mantained by CHMEX | | ||
| pool.vkbit.com | 3333 | https://vkbit.com/ | Mantained by djerfy | | ||
| pool.vkbit.com | 3333 | https://vkbit.com/ | Mantained by djerfy - public-pool fork | | ||
| pool.pyblock.xyz | 3333 | https://pool.pyblock.xyz/ | Mantained by curly60e | | ||
|
||
Other standard pools not compatible with low difficulty share: | ||
|
||
|
@@ -207,6 +209,6 @@ With the USB-C port to the right: | |
|
||
If you would like to contribute and help dev team with this project you can send a donation to the following LN address ⚡[email protected]⚡ or using one of the affiliate links above. | ||
|
||
If you want to order a fully assembled Nerdminer you can contribute to my job at [bitronics.store](https://bitronics.store). | ||
If you want to order a fully assembled Nerdminer you can contribute to my job at 🛒[bitronics.store](https://bitronics.store)🛒 | ||
|
||
Enjoy |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/************************************************************************************ | ||
* written by: Bitmaker | ||
* based on: Blockstream Jade shaLib | ||
* thanks to @LarryBitcoin | ||
* Description: | ||
* NerdSha256plus is a custom C implementation of sha256d based on Blockstream Jade | ||
code https://github.com/Blockstream/Jade | ||
The folowing file can be used on any ESP32 implementation using both cores | ||
*************************************************************************************/ | ||
#ifndef nerdSHA256plus_H_ | ||
#define nerdSHA256plus_H_ | ||
|
||
#include <stdbool.h> | ||
#include <stddef.h> | ||
#include <stdint.h> | ||
|
||
|
||
struct nerdSHA256_context { | ||
uint8_t buffer[64]; | ||
uint32_t digest[8]; | ||
}; | ||
|
||
/* Calculate midstate */ | ||
IRAM_ATTR void nerd_mids(nerdSHA256_context* midstate, uint8_t* dataIn); | ||
|
||
IRAM_ATTR bool nerd_sha256d(nerdSHA256_context* midstate, uint8_t* dataIn, uint8_t* doubleHash); | ||
|
||
void ByteReverseWords(uint32_t* out, const uint32_t* in, uint32_t byteCount); | ||
|
||
#endif /* nerdSHA256plus_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.