Difference between revisions of "BIP 0021"

From Bitcoin Wiki
Jump to: navigation, search
(Replace version with mustimplement. replace sample address with invalid sample address from wikipedia.)
Line 31: Line 31:
 
(See also [[#Simpler syntax|a simpler representation of syntax]])
 
(See also [[#Simpler syntax|a simpler representation of syntax]])
  
  bitcoinurn     = "bitcoin:" bitcoinaddress [ ";version=" bitcoinversion ] [ "?" bitcoinparams ]
+
  bitcoinurn         = "bitcoin:" bitcoinaddress [ "?" bitcoinparams ]
  bitcoinaddress = base58 *base58
+
  bitcoinaddress     = base58 *base58
bitcoinversion  = "1.0"
+
  bitcoinparams     = *bitcoinparam
  bitcoinparams   = *bitcoinparam
+
  bitcoinparam       = amountparam | labelparam | messageparam | otherparam | mustimplementparam
  bitcoinparam   = amountparam | labelparam | messageparam | otherparam
+
  amountparam       = "amount=" *digit [ "." *digit ]
  amountparam     = "amount=" *digit [ "." *digit ]
+
  labelparam         = "label=" *pchar
  labelparam     = "label=" *pchar
+
  messageparam       = "message=" *pchar
  messageparam   = "message=" *pchar
+
  otherparam         = pchar *pchar "=" *pchar
  otherparam     = pchar *pchar "=" *pchar
+
mustimplementparam = "mustimplement:" pchar *pchar "=" *pchar
  
 
=== Query Keys ===
 
=== Query Keys ===
Line 71: Line 71:
  
 
==Forward compatibility==
 
==Forward compatibility==
We want URIs generated in 2011 to still work in 2036: think about extensibility.
+
Variables which are prefixed with a mustimplement: are considered required. If a client does not implement any variables which are prefixed with mustimplement:, it MUST consider the entire URI invalid.  Any other variables which are not implemented, but which are not prefixed with a mustimplement:, can be safely ignored.
Of course we can make only educated guesses about the future, but don't act as if there is none.
+
 
This should be the best we can do, but it should not be seen as set in stone.
+
==Backward compatibility==
Make it possible for later generations to improve our work, to mend our errors, without breaking the URIs created now.
+
As this BIP is written, several clients already implement a bitcoin: URI scheme similar to this one, however usually without the additional "mustimplement:" prefix requirement.  Thus, it is recommended that additional variables prefixed with mustimplement: not be used in a mission-critical way until a grace period of 6 months from the finalization of this BIP has passed in order to allow client developers to release new versions, and users of old clients to upgrade.
  
 
== Appendix ==
 
== Appendix ==
Line 85: Line 85:
 
[foo] means optional, <bar> are placeholders
 
[foo] means optional, <bar> are placeholders
  
  bitcoin:<address>[;version=1.0][?amount=<amount>][?label=<label>][?message=<message>]
+
  bitcoin:<address>[?amount=<amount>][?label=<label>][?message=<message>]
  
 
=== Examples ===
 
=== Examples ===
  
 
Just the address:
 
Just the address:
  bitcoin:1NS17iag9jJgTHD1VXjvLCEnZuQ3rJED9L
+
  bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W
  
 
Address with name:
 
Address with name:
  bitcoin:1NS17iag9jJgTHD1VXjvLCEnZuQ3rJED9L?label=Luke-Jr
+
  bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?label=Luke-Jr
  
 
Request 20.30 BTC to "Luke-Jr":
 
Request 20.30 BTC to "Luke-Jr":
  bitcoin:1NS17iag9jJgTHD1VXjvLCEnZuQ3rJED9L?amount=20.3&label=Luke-Jr
+
  bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=20.3&label=Luke-Jr
  
 
Request 50 BTC with message:
 
Request 50 BTC with message:
  bitcoin:1NS17iag9jJgTHD1VXjvLCEnZuQ3rJED9L?amount=50&label=Luke-Jr&message=Donation%20for%20project%20xyz
+
  bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=50&label=Luke-Jr&message=Donation%20for%20project%20xyz
 +
 
 +
Some future version that has variables which are (currently) not understood and required and thus invalid:
 +
bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?mustimplement:somethingyoudontunderstand=50&mustimplement:somethingelseyoudontget=999
 +
 
 +
Some future version that has variables which are (currently) not understood but not required and thus valid:
 +
bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?somethingyoudontunderstand=50&somethingelseyoudontget=999
  
 
Characters must be URI encoded properly.
 
Characters must be URI encoded properly.
Line 105: Line 111:
 
== Reference Implementations ==
 
== Reference Implementations ==
 
=== Bitcoin clients ===
 
=== Bitcoin clients ===
* [[Bitcoin-Qt]] supports all valid Bitcoin URIs, with Windows and KDE integration as of commit 70f55355e29c8e45b607e782c5d76609d23cc858.
+
* [[Bitcoin-Qt]] supports the old version of Bitcoin URIs (ie without the mustimplement: prefix), with Windows and KDE integration as of commit 70f55355e29c8e45b607e782c5d76609d23cc858.
  
 
[[Category:Developer]]
 
[[Category:Developer]]
 
[[Category:Technical]]
 
[[Category:Technical]]
 
[[Category:BIP|D]]
 
[[Category:BIP|D]]

Revision as of 18:15, 31 January 2012

  BIP: 21
  Title: URI Scheme
  Author: Nils Schneider <nils.schneider@gmail.com>
          Matt Corallo <bip21@bluematt.me>
  Status: Draft
  Type: Standards Track
  Created: 29-01-2012

This BIP is a modification of an earlier BIP 0020 by Luke Dashjr. BIP 0020 was based off an earlier document by Nils Schneider. The alternative payment amounts in BIP 0020 have been removed.

Abstract

This BIP proposes a URI scheme for making Bitcoin payments.

Motivation

The purpose of this URI scheme is to enable users to easily make payments by simply clicking links on webpages or scanning QR Codes.

Specification

General rules for handling (important!)

Bitcoin clients MUST NOT act on URIs without getting the user's authorization. They SHOULD require the user to manually approve each payment individually, though in some cases they MAY allow the user to automatically make this decision.

Operating system integration

Graphical bitcoin clients SHOULD register themselves as the handler for the "bitcoin:" URI scheme by default, if no other handler is already registered. If there is already a registered handler, they MAY prompt the user to change it once when they first run the client.

BNF grammar

(See also a simpler representation of syntax)

bitcoinurn         = "bitcoin:" bitcoinaddress [ "?" bitcoinparams ]
bitcoinaddress     = base58 *base58
bitcoinparams      = *bitcoinparam
bitcoinparam       = amountparam | labelparam | messageparam | otherparam | mustimplementparam
amountparam        = "amount=" *digit [ "." *digit ]
labelparam         = "label=" *pchar
messageparam       = "message=" *pchar
otherparam         = pchar *pchar "=" *pchar
mustimplementparam = "mustimplement:" pchar *pchar "=" *pchar

Query Keys

  • label: Label for that address (e.g. name of receiver)
  • address: bitcoin address
  • message: message that shown to the user after scanning the QR code
  • size: amount of base bitcoin units (see below)
  • (others): optional, for future extensions

Transfer amount/size

If an amount is provided, it must be specified in decimal BTC. I.e. amount=50.00 is treated as 50 BTC.

Bitcoin clients MAY display the amount in any format that is not intended to deceive the user. They SHOULD choose a format that is foremost least confusing, and only after that most reasonable given the amount requested. For example, so long as the majority of users work in BTC units, values should always be displayed in BTC by default, even if mBTC or TBC would otherwise be a more logical interpretation of the amount.

Rationale

Payment identifiers, not person identifiers

Current best practices are that a unique address should be used for every transaction. Therefore, a URI scheme should not represent an exchange of personal information, but a one-time payment.

Accessibility (URI scheme name)

Should someone from the outside happen to see such a URI, the URI scheme name already gives a description. A quick search should then do the rest to help them find the resources needed to make their payment. Other proposed names sound much more cryptic; the chance that someone googles that out of curiosity are much slimmer. Also, very likely, what he will find are mostly technical specifications - not the best introduction to bitcoin.

Forward compatibility

Variables which are prefixed with a mustimplement: are considered required. If a client does not implement any variables which are prefixed with mustimplement:, it MUST consider the entire URI invalid. Any other variables which are not implemented, but which are not prefixed with a mustimplement:, can be safely ignored.

Backward compatibility

As this BIP is written, several clients already implement a bitcoin: URI scheme similar to this one, however usually without the additional "mustimplement:" prefix requirement. Thus, it is recommended that additional variables prefixed with mustimplement: not be used in a mission-critical way until a grace period of 6 months from the finalization of this BIP has passed in order to allow client developers to release new versions, and users of old clients to upgrade.

Appendix

Simpler syntax

This section is non-normative and does not cover all possible syntax. Please see the BNF grammar above for the normative syntax.

[foo] means optional, <bar> are placeholders

bitcoin:<address>[?amount=<amount>][?label=<label>][?message=<message>]

Examples

Just the address:

bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W

Address with name:

bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?label=Luke-Jr

Request 20.30 BTC to "Luke-Jr":

bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=20.3&label=Luke-Jr

Request 50 BTC with message:

bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=50&label=Luke-Jr&message=Donation%20for%20project%20xyz

Some future version that has variables which are (currently) not understood and required and thus invalid:

bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?mustimplement:somethingyoudontunderstand=50&mustimplement:somethingelseyoudontget=999

Some future version that has variables which are (currently) not understood but not required and thus valid:

bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?somethingyoudontunderstand=50&somethingelseyoudontget=999

Characters must be URI encoded properly.

Reference Implementations

Bitcoin clients

  • Bitcoin-Qt supports the old version of Bitcoin URIs (ie without the mustimplement: prefix), with Windows and KDE integration as of commit 70f55355e29c8e45b607e782c5d76609d23cc858.