Bitcoin Forum
April 19, 2024, 03:53:39 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: transactions & signatures in depth questions  (Read 1273 times)
Gol (OP)
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
March 03, 2014, 03:51:32 PM
Last edit: March 03, 2014, 04:25:42 PM by Gol
 #1

Hello all,
my aim to know everything there is on Bitcoin and cryptocurrencies-in depth, i am autodidact.
i have been reading a lot on the subject, did a search here and google(even bing...).


transactions-A want to send 3 coins to B:

A got a wallet address from B, A uses the address and hits "Send".
1. "on send" what protocol(s) is(are) been used?
2. what are the steps(for sender to block) until the transaction in been hash into a block?
3. B wallet address is: private Key+public Key=+transaction message=basically a message with cryptographic signature?
4. the receiving side is the one that allways creating the signatures?


Thank you.
Gol
1713542019
Hero Member
*
Offline Offline

Posts: 1713542019

View Profile Personal Message (Offline)

Ignore
1713542019
Reply with quote  #2

1713542019
Report to moderator
1713542019
Hero Member
*
Offline Offline

Posts: 1713542019

View Profile Personal Message (Offline)

Ignore
1713542019
Reply with quote  #2

1713542019
Report to moderator
I HATE TABLES I HATE TABLES I HA(╯°□°)╯︵ ┻━┻ TABLES I HATE TABLES I HATE TABLES
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713542019
Hero Member
*
Offline Offline

Posts: 1713542019

View Profile Personal Message (Offline)

Ignore
1713542019
Reply with quote  #2

1713542019
Report to moderator
1713542019
Hero Member
*
Offline Offline

Posts: 1713542019

View Profile Personal Message (Offline)

Ignore
1713542019
Reply with quote  #2

1713542019
Report to moderator
DannyHamilton
Legendary
*
Offline Offline

Activity: 3360
Merit: 4570



View Profile
March 03, 2014, 04:55:58 PM
 #2

Hello all,
my aim to know everything there is on Bitcoin and cryptocurrencies-in depth, i am autodidact.
i have been reading a lot on the subject, did a search here and google(even bing...).


transactions-A want to send 3 coins to B:

A got a wallet address from B, A uses the address and hits "Send".
1. "on send" what protocol(s) is(are) been used?
2. what are the steps(for sender to block) until the transaction in been hash into a block?

Start here:
http://bitcoin.org/bitcoin.pdf

Next read through these and any associated links:
https://en.bitcoin.it/wiki/Technical_background_of_version_1_Bitcoin_addresses
https://en.bitcoin.it/wiki/Transactions
https://en.bitcoin.it/wiki/Blocks
https://en.bitcoin.it/wiki/Block_chain
https://en.bitcoin.it/wiki/Mining
https://en.bitcoin.it/wiki/Transaction_fees
https://en.bitcoin.it/wiki/Controlled_supply

The entire source code is available to the public, so if you have the ability any specific questions can be answered by reading through the appropriate portions of the code here:
https://github.com/bitcoin/bitcoin
 
Once you've gotten through the whitepaper and the wiki links, come back and ask any specific questions you might have.

3. B wallet address is: private Key+public Key=+transaction message=basically a message with cryptographic signature?

No.  See here:
https://en.bitcoin.it/wiki/Technical_background_of_version_1_Bitcoin_addresses
and here:
https://en.bitcoin.it/wiki/Transactions

4. the receiving side is the one that allways creating the signatures?

No.  See here:
http://bitcoin.org/bitcoin.pdf
and here:
https://en.bitcoin.it/wiki/Transactions
Gol (OP)
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
March 03, 2014, 05:27:42 PM
Last edit: March 03, 2014, 05:46:08 PM by Gol
 #3

wow thank you for the reply!
at least half of them i read already, my questions about the process of the signature remain, but i am going to read it again.

https://en.bitcoin.it/wiki/Technical_background_of_version_1_Bitcoin_addresses:

1. the info image describing the process is it Uncompressed or compressed?
i think its compressed cus the 32bytsX2 but i am not sure...
DannyHamilton
Legendary
*
Offline Offline

Activity: 3360
Merit: 4570



View Profile
March 03, 2014, 07:29:58 PM
 #4

https://en.bitcoin.it/wiki/Technical_background_of_version_1_Bitcoin_addresses:

1. the info image describing the process is it Uncompressed or compressed?
i think its compressed cus the 32bytsX2 but i am not sure...

The image indicates an address generated from RIPEMD160(SHA256(32 byte X_Integer and 32 byte Y_integer))

Therefore it is uncompressed.

DannyHamilton
Legendary
*
Offline Offline

Activity: 3360
Merit: 4570



View Profile
March 03, 2014, 07:32:55 PM
 #5

wow thank you for the reply!
at least half of them i read already, my questions about the process of the signature remain

Question about process of the signature?

Each input is signed with an ECDSA digital signature of a digest of the transaction.  The ECDSA signature is calculated on the Secp256k1 curve using a private key that is associated with the address that the bitcoins were received at.
Gol (OP)
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
March 03, 2014, 07:57:48 PM
Last edit: March 03, 2014, 08:32:57 PM by Gol
 #6

in here:
https://en.bitcoin.it/wiki/Technical_background_of_version_1_Bitcoin_addresses

there is a image data named "Conversion from ECDSA public key to Bitcoin Address"
1. using 32bytes X 2 is it Uncompressed (https://en.bitcoin.it/wiki/Elliptic_Curve_Digital_Signature_Algorithm)?
2. what is the (BE) next to the 32bytes mean?



flatfly
Legendary
*
Offline Offline

Activity: 1078
Merit: 1011

760930


View Profile
March 03, 2014, 08:41:16 PM
 #7

in here:
https://en.bitcoin.it/wiki/Technical_background_of_version_1_Bitcoin_addresses

there is a image data named "Conversion from ECDSA public key to Bitcoin Address"
1. using 32bytes X 2 is it Uncompressed (https://en.bitcoin.it/wiki/Elliptic_Curve_Digital_Signature_Algorithm)?
2. what is the (BE) next to the 32bytes mean?



1. Uncompressed

2. BE means Big Endian - http://en.wikipedia.org/wiki/Endianness
Gol (OP)
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
March 03, 2014, 08:54:52 PM
 #8

^^^thank you.

1. wallet  address(like:1QKuiPibmXDNMtSNNYYmpFczZViRz9AzEF) is(the actual number) the result of privet key+ public key only?
when referring to the number above, is saying: wallet address, public address, public key are all the same?
DeathAndTaxes
Donator
Legendary
*
Offline Offline

Activity: 1218
Merit: 1079


Gerald Davis


View Profile
March 03, 2014, 09:00:11 PM
 #9

^^^thank you.

1. wallet  address(like:1QKuiPibmXDNMtSNNYYmpFczZViRz9AzEF) is(the actual number) the result of privet key+ public key only?
when referring to the number above, is saying: wallet address, public address, public key are all the same?

No.  Neither are correct.

There is a private key (a random 256 bit number).
ECDSA is used to generate a public key from that private key (compressed or uncompressed).
The public key is hashed (PubKeyHash).
The PubKeyHash is versioned, checksumed and then encoded in base58 to produce the address.

There are four distinct things
Private Key
PubKey
PubKeyHash
Address

Each of these are used in different areas in the Bitcoin protocol.  A user may provide you an ADDRESS which your client reverses to the PUBKEYHASH.  Your client create a transaction which uses the PUBKEYHASH in the output of the transaction.  The transaction is signed by your PRIVATE KEY(s) your PUBKEY(s) are included in the input to allow other nodes to verify the signature.
Gol (OP)
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
March 03, 2014, 09:22:07 PM
 #10

super clear now!
i have many more questions... but ill do some more reading before asking.

thank you!
Gol (OP)
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
March 04, 2014, 08:14:21 PM
 #11

Hello ! set of new queries if you will.

the transactions status before entering a block

A-----3coins--->B
they can right away see that A wallet=(-3coins) and B wallet=(+3coins).
1. only they can see that as this point or the entire network as well?
2. is there a term for that period of time(before Hasing into a block)?
3. why conformation is 10 minutes long and not 5? or any other number?

thank you!
Gol
piotr_n
Legendary
*
Offline Offline

Activity: 2053
Merit: 1354


aka tonikt


View Profile WWW
March 04, 2014, 08:30:32 PM
 #12

Hello ! set of new queries if you will.

the transactions status before entering a block

A-----3coins--->B
they can right away see that A wallet=(-3coins) and B wallet=(+3coins).
1. only they can see that as this point or the entire network as well?
2. is there a term for that period of time(before Hasing into a block)?
3. why conformation is 10 minutes long and not 5? or any other number?

thank you!
Gol

1. entire network as well.
2. no - basically you need to convince a miner to mine your transaction - it might just as well be forever
3. ask satoshi

Check out gocoin - my original project of full bitcoin node & cold wallet written in Go.
PGP fingerprint: AB9E A551 E262 A87A 13BB  9059 1BE7 B545 CDF3 FD0E
Gol (OP)
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
March 04, 2014, 09:07:54 PM
 #13

1. thanks
2. thanks
3. ill consider it "random"...

when a transaction is labeled 'spent' ?
i an not sure if its right after the first indication in the receiver wallet or after the mining process...?

thanks
DannyHamilton
Legendary
*
Offline Offline

Activity: 3360
Merit: 4570



View Profile
March 04, 2014, 09:08:50 PM
Last edit: March 04, 2014, 09:21:19 PM by DannyHamilton
 #14

Hello ! set of new queries if you will.

the transactions status before entering a block

A-----3coins--->B
they can right away see that A wallet=(-3coins) and B wallet=(+3coins).

What is A and B?

This is not how transactions work.

There is no -3coins and +3coins.

A transaction completely spends one or more previously received outputs from previously received transactions.
Then it assigns that value to one or more new addresses (some of which might be addresses in the same wallet that is spending the bitcoins).

It is impossible for anyone accept you to know how many addresses are in your wallet unless you tell them.

So for example...

Wallet A has for example 3 addresses Wallet_A_Address_A, Wallet_A_Address_B, and Wallet_A_Address_C

That wallet A has received transactions at each of those addresses in the past:

  • Transaction1 sending 1 bitcoin to Wallet_A_Address_A
  • Transaction2 sending 0.5 bicoins to Wallet_A_Address_A
  • Transaction3 sending 1.2 bitcoins to Wallet_A_Address_A
  • Transaction4 sending 0.1 bitcoins to Wallet_A_Address_B
  • Transaction5 sending 0.25 bitcoins to Wallet_A_Address_C

Unless you tell everybody that your wallet contains those three addresses, nobody can determine that the addresses belong to the same wallet A at that time, so nobody except you knows that the balance displayed by the wallet A is 3.05 BTC.  Other than the display to you, there is no "account" that is being updated with a total.  Each of those outputs is completely separate. (They can see that Wallet_A_Address_A controls 2.7 total bitcoins, Wallet_A_Address_B controls 0.1 bitcoins, and Wallet_A_Address_C controls 0.25 bitcoins, but they can't tell from the addresses that they all belong to the same wallet or who they belong to)

Now the user of wallet A decides to send 1.3 BTC to an address supplied by the user of wallet B.  The user of wallet A does not know how many addresses wallet B has or what the addresses are.  The user of wallet B creates a brand new address with no bitcoins in it yet.  We'll call it Wallet_B_Address_A (since this is the ONLY address of wallet B that the user of wallet A now knows about).

Wallet A creates Transaction6 spending one or more of the previously received outputs to provide at least 1.3 BTC of value to the transaction.  As an example, we'll assume that wallet A chooses the 0.5 BTC from Transaction2 and the 1.2 BTC from Transaction3.

This supplies a total of 1.7 BTC of value to Transaction6.  Then wallet A creates 2 outputs.  One output assigns 1.3 BTC to Wallet_B_Address_A.  Wallet A creates a brand new empty address Wallet_A_Address_D and creates a second output in Transaction6 assigning the remaining 0.4 BTC to this new address.

Wallet A then signs the two inputs with an ECDSA digital signature of a digest of Transaction6 using the private key associated with Wallet_A_Address_A (since both those inputs were previously outputs that were sent to that address).

Wallet A then broadcasts this transaction to all the peers that it is connected to.

Each peer verifies that the signature is valid, that the inputs provide sufficient value to the transaction to account for the sum of the outputs, and that the transaction conforms to any other rules of the protocol.  If the transaction meets all these requirements, then the peers add the transaction to their own memory pool, and relay it to all the peers that they are connected to.  Each peer on the network, as it receives the transaction, re-verifies all the requirements before relaying it to it's own peers.

Eventually one of the peers that wallet B is connected to broadcasts the transaction to wallet B.  Wallet B recognizes that one of the outputs belong to an address that it has the key to.  Wallet B verifies the transaction (just like every other peer), and relays the transaction (just like every other peer), but it also updates the balance that it displays to the user of wallet B indicating that the wallet just received an unconfirmed transaction for 1.3 BTC.

1. only they can see that as this point or the entire network as well?

At this point almost the entire network can see that bitcoins that were previously received in two transactions at Wallet_A_Address_A have been spent.  They can also see that the transaction sent 1.2 BTC to an address and 0.4 BTC to another address.  Unless the users of one of the wallets tells people, it is not possible to know for certain what wallet owns each of those addresses.  It is not possible to know that the 0.4 BTC are being sent back to the originating wallet as "change" or that the 1.2 BTC is going to a wallet that is owned by the reciever.

2. is there a term for that period of time(before Hasing into a block)?

Including transactions in a block is entirely voluntary.  As Transaction6 is being relayed throughout the network, eventually some miners and mining pools receive it. They verify it and relay it just like any other peer.  Then they decide if Transaction6 meets the criteria that they have set for including transactions in the blocks that they create.  If it does meet that criteria, then the miner (or mining pool) builds a new block that includes Transaction6 and begins attempting to solve the block.  Solving a block is a random and difficult processes.  The protocol automatically adjusts the difficulty so that the entire combined mining power on the bitcoin network solves a block approximmately once every 10 minutes.  If the miner (or mining pool) that solves that block did not choose to include Transaction6, then Transaction6 has to continue to wait until a miner that does include the transaction succeeds in solving a block.

3. why conformation is 10 minutes long and not 5? or any other number?

There is no guarantee that it is 10 minutes.  The difficulty is adjusted so that the long term average is 10 minnutes, but it is a random processes. It is possible
to have 2 blocks that happen within less than a second of each other. It is also possible to have more than an hour until the next block.

10 minutes was chose by Satoshi as a way to allow reasonably fast blocks while limiting the time wasted mining the wrong block.  Each block builds on the previous block.  This means that if someone solves a block, you working on a block that is likely to be invalid until you hear about the solved block from a peer.  Meanwhile the miner that solved the block has a headstart on you working on the next block.  If it takes your node 5 seconds to hear about a block that has been solved, and the average time between blocks is 6 seconds, then most of the time, you are going to be working on the wrong block (until you succeed in hearing about a block fast enough and solve the next block first).  The longer the average gap between blocks, the smaller percentage of the time you will waste on the wrong block.

Perhaps 5 minutes would have worked.  Perhaps 1 minute would have worked.  Satoshi chose 10 minutes, so that's the way bitcoin operates.
DannyHamilton
Legendary
*
Offline Offline

Activity: 3360
Merit: 4570



View Profile
March 04, 2014, 09:18:29 PM
 #15

when a transaction is labeled 'spent' ?
i an not sure if its right after the first indication in the receiver wallet or after the mining process...?

Each peer will consider a transaction output spent when that peer first hears of a transaction that uses the previous transaction output as an input.  This means that if a peer hears of any other transaction that tries to spend the same previous transaction output, it will consider the second one that it hears about to be "invalid" and will refuse to relay it or acknowledge it.

I can therefore create 2 transactions (Transaction7 & Transaction8) that both spend the same previous output.  I can send Transaction7 to half of the peers that I am connected to, and Transaction8 to the other half of the peers that I am connected to.  Both sets of peers will verify the transaction (since it is the first one they heard about) and attempt to send it to the peers that they are connected to.  At that point there is a race as the 2 transactions spread out across the network.  Eventually part of the network accepts Transaction7 as "valid" and the other part of the network accepts Transaction8 as "valid".  The miners that hear about Transaction7 first are trying to confirm Transaction7.  The miners that hear about Transaction8 first are trying to confirm Transaction8. Once a miner succeeds in confirming one of the two transactions it will relay that block to all its connected peers.  The block will spread across the network.  All peers will drop both Transaction7 and Transaction8 from their memory pools, since now one of the 2 transactions is in a block.  Whichever of the two transactions made it into the block becomes the "real" and "confirmed" transaction that all peers now know about.  The other transaction just doesn't exist anymore.
Gol (OP)
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
March 04, 2014, 09:30:08 PM
 #16

DannyHamilton thank you!
ill need a day or two for that.
DannyHamilton
Legendary
*
Offline Offline

Activity: 3360
Merit: 4570



View Profile
March 04, 2014, 09:39:57 PM
 #17

DannyHamilton thank you!
ill need a day or two for that.

Most of these questions were answered in the Whitepaper.  Perhaps you should review it and ask questions about the specific areas of that document that confuse you.
DeathAndTaxes
Donator
Legendary
*
Offline Offline

Activity: 1218
Merit: 1079


Gerald Davis


View Profile
March 05, 2014, 01:16:51 AM
 #18

when a transaction is labeled 'spent' ?

I think you owe Danny some tuition for the Bitcoin 101 course.

One small thing to add to all that good information is transactions are never "spent".  Outputs are spent.  A transaction can contain one or more outputs.  Each can be spent independently.  An output is spent when it is referenced in the input of a future transaction.   The input of all transactions (with one exception) references a specific unspent output.
DannyHamilton
Legendary
*
Offline Offline

Activity: 3360
Merit: 4570



View Profile
March 05, 2014, 01:25:25 AM
 #19

when a transaction is labeled 'spent' ?

I think you owe Danny some tuition for the Bitcoin 101 course.

One small thing to add to all that good information is transactions are never "spent".  Outputs are spent.  A transaction can contain one or more outputs.  Each can be spent independently.  An output is spent when it is referenced in the input of a future transaction.   The input of all transactions (with one exception) references a specific unspent output.

DeathAndTaxes is correct with his clarification on "outputs" being spent instead of "transactions".  I had simplified a bit and skipped this detail since you were struggling a bit already with the basic concepts on signing and relaying transactions.  I touched on it a bit when I mentioned, "Then wallet A creates 2 outputs.  One output assigns 1.3 BTC to Wallet_B_Address_A.  Wallet A creates a brand new empty address Wallet_A_Address_D and creates a second output in Transaction6 assigning the remaining 0.4 BTC to this new address."
Gol (OP)
Newbie
*
Offline Offline

Activity: 47
Merit: 0


View Profile
March 05, 2014, 07:01:13 AM
 #20

I think you owe Danny some tuition for the Bitcoin 101 course.
its more then 101...and u right i do owe him.
Pages: [1] 2 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!