Bitcoin Forum
May 29, 2024, 07:28:47 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Economics / Re: How Much Garden You Would Need to 100% Survive On on: July 24, 2022, 06:34:55 AM
All of this was already thought about in the pre-digital age.
And John Seymour wrote a book about it.

The Self-Sufficient Life and How to Live It - The Complete Back-to-Basics Guide
Das grosse Buch vom Leben auf dem Lande - Ein praktisches Handbuch für Realisten und Träumer

I have read the book long time ago.
It's not in my nature to kill animals and farming is too exhausting for me.

Today i live peacefully in a country with a local crypto-exchange, where electricity is cheap and i can't read/understand the daily newspaper.

Everyone finds their own way  Wink
2  Bitcoin / Hardware / Re: Open Source Bitcoin ASIC miner project that uses 2x BM1387 (Antminer S9) on: July 02, 2022, 10:47:21 AM
Hi Skot,
thank you for sharing this with us.

I hope for a stand-alone-solo-miner with Esp32 as front-end.
3  Bitcoin / Project Development / Re: Searching (who am I kidding, crack) private keys using FPGA and mining chips on: April 29, 2022, 09:29:20 AM

3rd. The really cool idea is to start mining using your super algorithm. For less than a dollar, you'll make millions and revolutionize the industry! Most importantly, you don't need to learn FPGAs and true programming for that.


Mining?
Ossi you really have no clue what you're talking about.
Already after your first post one explained you where the difference between mining and key generating is.

Still don't get it?
4  Bitcoin / Project Development / Re: Searching (who am I kidding, crack) private keys using FPGA and mining chips on: April 17, 2022, 03:11:52 AM
Could you stop posting foolishness in my thread (sic!)

who is still (since years) posting here foolish ideas?
At the beginning he wanted to sell us the FPGA as the ultimate solution and now it's become ASIC after all.
This German guy is clearly a pro.

Here is a Bitcoin address generator running on ESP32 ... for just a few Dollar  Grin

// dev module default 4mb huge app partition

// output format: private key*compressed public key*counter

#include "secp256k1.h"
#include "secp256k1_preallocated.h"

uint8_t secret[32];
double life = 0;

void setup() {
  delay(1);     
  Serial.begin(115200);
}

void loop() {
    secp();
    life++;
}

// --------------------------------------------------------------------------------------------
void secp(){
  secp256k1_context *ctx = NULL;

  int res;   
  size_t len;
  size_t context_size = secp256k1_context_preallocated_size(SECP256K1_CONTEXT_VERIFY | SECP256K1_CONTEXT_SIGN);

  ctx = secp256k1_context_create(SECP256K1_CONTEXT_VERIFY | SECP256K1_CONTEXT_SIGN);

// generate random private key - full 8 bit range 0-ff
  for (int i = 0; i<32; i++) {
    secret = random(0,256);
  }

// computing corresponding pubkey
  secp256k1_pubkey pubkey;
  res = secp256k1_ec_pubkey_create(ctx, &pubkey, secret);

// serialize the pubkey in compressed format
  uint8_t pub[33];
  len = sizeof(pub);
  secp256k1_ec_pubkey_serialize(ctx, pub, &len, &pubkey, SECP256K1_EC_COMPRESSED);

    print_hex(secret, sizeof(secret));
    Serial.print("*");
    print_hex(pub, sizeof(pub));
    Serial.print("*");
    Serial.println(life);

  secp256k1_context_destroy(ctx);
}

// ---------------------------------------------------------------------------------------

void print_hex(const uint8_t * data, size_t data_len){
  char arr[3];
  for(int i=0; i<data_len; i++){
    if(data<0x10){ Serial.print("0"); }
    Serial.print(data, HEX);
  }
}
5  Economy / Marketplace / Re: quit project wallet.dat, sell data collection on: March 25, 2022, 09:11:09 AM
Also someone above have identified that all these files are a combination of fake wallet pack. What's your say on it?

Believe it or not.
6  Bitcoin / Project Development / Re: Searching (who am I kidding, crack) private keys using FPGA and mining chips on: March 25, 2022, 09:00:04 AM
Now it contains specialized hashing chips (ASIC). It is a little more expensive than mining chips, but faster. Power consumption is reduced to ~90W per device. This solution allows to use of passive convection cooling or simple external airflow.

And still no performance data  Grin

There is no need for FPGA/ASIC for secp256k1. Just use as many cores you can get.

90 Watt?
Running a ESP32 cluster will outperform this fancy "Schatzgraber".
ESP32 is 2 core 240MHz at 37mA for under 1 USD.





7  Economy / Marketplace / quit project wallet.dat, sell data collection on: January 28, 2022, 09:42:02 AM
I quit my project wallet.dat and will spend more power in BSGS.
I collected 40 wallet.dat over the time.
Different source. Some are bought.

In every file there is at least a wallet.dat. In some files there is already the extracted hash. If available there are password hints included.
See the zip file was you get for your money.

After cleared payment you will get the password for the archive.
Or you can try to recover the password for the zip file too :-)

https://www11.zippyshare.com/v/kqOx4pJI/file.html

Price is 0.0013 BTC obo.

8  Bitcoin / Bitcoin Technical Support / Re: Help needed recovering old wallet from bitcoin qt (around 2016) on: January 17, 2022, 04:05:03 AM
I coincidentally found my old bitcoin wallet.dat from around 2016 on one of my backup discs.

Post the BTC address.

I guess we all know what you are hunting for  Tongue
9  Other / Beginners & Help / Re: Discussion! Don't BUY FAKE! "wallet.dat" files with lost passwords. on: January 17, 2022, 02:28:34 AM
This is 100% genuine wallet!

110 BTC - 1NyEeyXu8ydNw67e3ZTUmkwQJ8QNd1o3cF                                                                         
$bitcoin$64$f3c90b573111e06ff0f96ebf32921f5f3dd10ba219f391ab0fcc1adadd3e2000$16$9809070f76fa92c4$60692$2$00$2$00


Any proof?
10  Bitcoin / Project Development / Re: Searching (who am I kidding, crack) private keys using FPGA and mining chips on: January 01, 2022, 06:51:33 AM
Do you have a working prototype?
Any Benchmark?

How long to solve Puzzle #100?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!