Bitcoin Forum
May 13, 2024, 12:19:38 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Bitcoin Address start with 1 or 3  (Read 7471 times)
BlackJacky (OP)
Full Member
***
Offline Offline

Activity: 237
Merit: 100


View Profile
May 18, 2015, 12:38:48 PM
 #1

Hi all,

so far I know a bitcoin address which starts with 1 has only one private key and a bitcoin address which starts with 3 has multisignature so 3 private keys. Is this kind of sense transferable to if I see a address starting with 5 or 8 it has this amount of private keys?

Thanks very much for an answer Smiley
1715602778
Hero Member
*
Offline Offline

Posts: 1715602778

View Profile Personal Message (Offline)

Ignore
1715602778
Reply with quote  #2

1715602778
Report to moderator
1715602778
Hero Member
*
Offline Offline

Posts: 1715602778

View Profile Personal Message (Offline)

Ignore
1715602778
Reply with quote  #2

1715602778
Report to moderator
If you want to be a moderator, report many posts with accuracy. You will be noticed.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715602778
Hero Member
*
Offline Offline

Posts: 1715602778

View Profile Personal Message (Offline)

Ignore
1715602778
Reply with quote  #2

1715602778
Report to moderator
1715602778
Hero Member
*
Offline Offline

Posts: 1715602778

View Profile Personal Message (Offline)

Ignore
1715602778
Reply with quote  #2

1715602778
Report to moderator
1715602778
Hero Member
*
Offline Offline

Posts: 1715602778

View Profile Personal Message (Offline)

Ignore
1715602778
Reply with quote  #2

1715602778
Report to moderator
shorena
Copper Member
Legendary
*
Offline Offline

Activity: 1498
Merit: 1520


No I dont escrow anymore.


View Profile WWW
May 18, 2015, 12:54:21 PM
Merited by khufuking (1)
 #2

Hi all,

so far I know a bitcoin address which starts with 1 has only one private key and a bitcoin address which starts with 3 has multisignature so 3 private keys. Is this kind of sense transferable to if I see a address starting with 5 or 8 it has this amount of private keys?

Thanks very much for an answer Smiley

No. The 1 at the beginning of an address is typical for pay to pubkey hash (P2SH) addresses. In order to spend these you need to provide a public key and a signature created with the corresponding private key. Thus, yes there is a single private key involved.

The 3 at the beginning of an address is typical for pay to script hash (P2SH) addresses. These can be spend by a multitude of different scripts, including 2 of 3 signature scripts or 3 or 7, etc.

The number is no reference to the number of private keys involved. In fact a P2SH input can be spend without any private key, there are essentially no limits regarding the script, as long as its using the script language provided by bitcoin core. If you can meet the requirements and the hash fits you can spend the input.

Im not really here, its just your imagination.
BlackJacky (OP)
Full Member
***
Offline Offline

Activity: 237
Merit: 100


View Profile
May 18, 2015, 01:15:04 PM
 #3

What does pay to pubkey hash and pay to script hash means?  Huh Sorry, Im not technically experienced...
wpstudio
Hero Member
*****
Offline Offline

Activity: 660
Merit: 500


View Profile WWW
May 18, 2015, 01:17:13 PM
 #4

What does pay to pubkey hash and pay to script hash means?  Huh Sorry, Im not technically experienced...

This might help - http://bitcoin.stackexchange.com/questions/29708/multi-signature-and-pay-to-script-hash-vs-pay-to-pub-key-hash
DannyHamilton
Legendary
*
Online Online

Activity: 3388
Merit: 4653



View Profile
May 18, 2015, 02:59:09 PM
Merited by khufuking (1)
 #5

Sorry, Im not technically experienced...

Then you may have some difficulty understanding some of the technical details about how bitcoin works.

What does pay to pubkey hash and pay to script hash means?

At the protocol level there aren't any bitcoins or any addresses at all.  "Bitcoins" are just an abstraction that we humans use to make it easier to discuss the transfer of control of value.  "Addresses" are just a shorthand that we've created to represent a couple of very common scripts used.

At the protocol level, there are unspent transaction outputs, and these are used as inputs to transactions that create new unspent transaction outputs.  Transaction outputs are encumbered with a requirement that must be met in order to use them as inputs in a transaction.  The requirement of the unspent outputs that are being used as inputs are met by the transaction sender in the form of data (and possibly a script) in the "ScriptSig" portion of the input.  The requirements that the newly created outputs are encumbered with are created by the sender in the form of a script in the "ScriptPubKey" portion of the output.

There is an entire scripting language available for creating these scripts.  You can see the commands available here:
https://en.bitcoin.it/wiki/Script

Rather than needing to tell someone:
"Please create a transaction that has an output with a value of 100000000 and is encumbered with a script creating a requirement to supply both an ECDSA signature using the Secp256k1 curve AND the associated public key which both validates that signature AND hashes using SHA256, and then RIPEMD-160 to a hex value of 0xa7ffa0ee21557a7efd80659e7e1959454c3b03af"

(notice that the script has a requirement built on the hash of the public key, a "pubkey hash")

It is much easier for everyone to simply agree that we will create a value that we'll call an "address" that is based on that RIPEMD-160 hash, and that has a "script version" of 1 in the beginning and a checksum at the end to catch any typing errors.  Then we all agree that our wallet software will recognize this type of "address" and will create the agreed script described above using the hash extracted from the address.  The wallet software takes care of all the technical details of creating the script with the appropriate requirements and sending the transaction.  Then any software that anyone writes to look at transactions recognizes the script pattern and converts it back to an "address" when displaying it to us humans.  Then you can say the exact same thing this way:
"Please send 1 BTC to 1GKJ5Rd5ngMdMkrnxPQhVE9F46HxZ2LrMs"

Now, what if you wanted something more complex than the common script type for which everyone has agreed to an "address" type?  Since your needs would be special and not common, there wouldn't be any agreement on how to encode the necessary script as an "address".  You'd have to describe your complex requirements, and the sender would need to figure out how to create a script that would meet those needs so that they could encumber the output with the appropriate script.  This would make "smart contracts", and multi-sig transactions, difficult and complex to communicate.  You could create the script for the sender, and then give it to them, but the average transaction sender isn't going to be technically knowledgeable enough to know how to create a transaction that uses your special script.

Instead, what you could do is create the script, then create a hash of the script.  Now you have a format that can be easily standardized.  Anybody can create any script of any complexity.  Then they can hash that script, and ask the sender to:
"Please create a transaction that has an output with a value of 100000000 and is encumbered with a script creating a requirement to supply a script that both evaluates successfully AND hashes using SHA256 and then RIPEMD-160 to a hex value of 0xe8c300c87986efa84c37c0519929019ef86eb5b4"

(notice that the script has a requirement built on the hash of a script, a "script hash")

If we all agree on this new "pay to script hash" script pattern, then we can agree that we will create a value that we'll call an "address" that is based on that RIPEMD-160 hash, and that has a "script version" of 3 in the beginning and a checksum at the end to catch any typing errors. Then we all agree that our wallet software will recognize this type of "address" and will create the agreed standardized script described above using the hash extracted from the address. The wallet software takes care of all the technical details of creating the script with the appropriate requirements and sending the transaction.  Then any software that anyone writes to look at transactions recognizes the script pattern and converts it back to an "address" when displaying it to us humans.  Then you can say the exact same thing this way:
"Please send 1 BTC to 3NukJ6fYZJ5Kk8bPjycAnruZkE5Q7UW7i8".

Note that the receiver of this transaction (the one that wants the complex script in the first place) is responsible for creating the script, hashing it and then providing the sender with an "address" that has version 3, and the hash and checksum embedded.  The sender can simply send to the "address" and their wallet knows how to create the "pay to script hash" pattern in the output.  The receiver then needs to supply the actual script in the input when they eventually spend the output that has been created for them.

This simplifies the sending of bitcoins when the receiver requires a complex script, and places all the burden on the person that is requireing the complex script in the first place.

This standardization has been taken one step farther in the case of multi-sig transactions by allowing the receiver(s) of the transaction to create the pay2script hash address with their wallet software and the wallet takes care of keeping track of what script was hashed and using that script when the receiver later spends those bitcoins.



Pages: [1]
  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!