Bitcoin Forum
October 01, 2025, 04:50:27 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Local / Türkçe (Turkish) / Re: Kripto Para Piyasası ve Borsaları Etik ve Ahlaki midir? on: September 22, 2018, 06:09:10 PM
Kesinlikle katılıyorum hocam. Özellikle bitcoine yeni giren arkadaşlarım daha bitcoinin nasıl çalıştığını bilmeden borsaya giriyorlar. Akıllarındaki tek kelime 'blockchain ve madenci' onun dışında hiç bir fikri yok. Private key nedir bilmeden borsaya giren insanlar gördü bu gözler. Mesela, Hal Finey ilk bitcoin transferini Satoshi'yle yaptığında aklında hiçbir zaman ulan bu yakında çok değerlenir bunu tutayim fikri yoktu. Adam o kadar ileri görüşlüydü ki 2009 yılında bir tweetde 'bitcoinden çıkan karbondioksit emisyonunu azaltmaya çalışıyorum dedi. Onun için sadece bu teknoloji önemliydi.
2  Bitcoin / Bitcoin Technical Support / Re: I Want To Learn Exact Formula To Get Block's Hash on: September 22, 2018, 05:01:59 PM
Hi, I want to learn exact formula to get blocks hash where nonce is compatible for network's target requirements.

For example, I want to see formula like this.

SHA256 ("Previous Block Hash + Nonce + Merkel Root + Client Version")

Thank you very much. Have a great day  Grin

This is what you are looking for:

Quote
A block header contains these fields:
Field    Purpose    Updated when...    Size (Bytes)
Version    Block version number    You upgrade the software and it specifies a new version    4
hashPrevBlock    256-bit hash of the previous block header    A new block comes in    32
hashMerkleRoot    256-bit hash based on all of the transactions in the block    A transaction is accepted    32
Time    Current timestamp as seconds since 1970-01-01T00:00 UTC    Every few seconds    4
Bits    Current target in compact format    The difficulty is adjusted    4
Nonce    32-bit number (starts at 0)    A hash is tried (increments)    4

For example, this python code will calculate the hash of the block with the smallest hash as of June 2011, Block 125552. The header is built from the six fields described above, concatenated together as little-endian values in hex notation:

Code:
>>> import hashlib
>>> header_hex = ("01000000" +
 "81cd02ab7e569e8bcd9317e2fe99f2de44d49ab2b8851ba4a308000000000000" +
 "e320b6c2fffc8d750423db8b1eb942ae710e951ed797f7affc8892b0f1fc122b" +
 "c7f5d74d" +
 "f2b9441a" +
 "42a14695")
>>> header_bin = header_hex.decode('hex')
>>> hash = hashlib.sha256(hashlib.sha256(header_bin).digest()).digest()
>>> hash.encode('hex_codec')
'1dbd981fe6985776b644b173a4d0385ddc1aa2a829688d1e0000000000000000'
>>> hash[::-1].encode('hex_codec')
'00000000000000001e8d6829a8a21adc5d38d0a473b144b6765798e61f98bd1d'

Source: https://en.bitcoin.it/wiki/Block_hashing_algorithm

You are a legend dude. I would give merit if I had but where is the nonce?
3  Bitcoin / Bitcoin Technical Support / I Want To Learn Exact Formula To Get Block's Hash on: September 21, 2018, 01:47:30 PM
Hi, I want to learn exact formula to get blocks hash where nonce is compatible for network's target requirements.

For example, I want to see formula like this.

SHA256 ("Previous Block Hash + Nonce + Merkel Root + Client Version")

Thank you very much. Have a great day  Grin
4  Local / Bitcoin Haberleri / Re: Bloomberg: Bitcoin fiyatı için daha da kötüsü gelebilir on: September 09, 2018, 08:17:06 AM
Bloomberg daha dövizlerin fiyatını tahmin edemiyor gelmiş bitcoin tahminimi yapıyor.

Senin dediğin o BloombergHT. Bu sanırsam Bloomberg.com.
5  Local / Yeni Başlayanlar & Yardım / Minerslara ne sıklıkla yeni bitcoinler verilir? on: August 16, 2018, 07:51:26 PM
Samanlıkta iğneyi bulan minerlara ne kadar sıklıkla bitcoin veriliyor?
6  Bitcoin / Bitcoin Technical Support / Re: Question About Private Key? on: August 07, 2018, 07:29:34 PM
Thank you sirs. Thread can be locked.
7  Bitcoin / Bitcoin Technical Support / Re: Question About Private Key? on: August 07, 2018, 07:06:24 PM
Yes, I added 1 more word to seed. Will it still work?
8  Bitcoin / Bitcoin Technical Support / Re: Question About Private Key? on: August 07, 2018, 06:44:37 PM
Yes no one donated it but I want to get private keys since I could want to switch to another wallet.
9  Bitcoin / Bitcoin Technical Support / Question About Private Key? on: August 07, 2018, 06:35:59 PM
Hey, I have been collecting donations with 1Asyt8UhnJjyGTriRwxwZfYp44V7eJLPHU adress. My wallet is Electrum and aıtomatically generated 26 wallet adress. Should I only get private adress for 1Asyt8UhnJjyGTriRwxwZfYp44V7eJLPHU or every other adress (I only use 1Asyt8UhnJjyGTriRwxwZfYp44V7eJLPHU)

Thank you.
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!