Wallet protocol: Difference between revisions
Line 79: | Line 79: | ||
| "Miner" || Can generate new addresses, get work, and report found blocks | | "Miner" || Can generate new addresses, get work, and report found blocks | ||
|- | |- | ||
| Merchant || Can create a transaction (only with 'proposal' flag), but not send it | | Merchant || Can create a transaction (only with 'proposal' flag), but not send it without user interaction | ||
|- | |- | ||
| Read-only || Can view accounts, addresses, and any public data, and combinations thereof (eg, balances) | | Read-only || Can view accounts, addresses, and any public data, and combinations thereof (eg, balances) |
Revision as of 02:13, 25 March 2011
This is a project to define a new wallet protocol addressing problems with the current JSON-RPC implementation in bitcoind. Please feel free to make edits. If you disagree with something, turn it into a "debate".
Explanation
This protocol aims to be a standard for communication between Wallets and User Interfaces. It can be used to access a Wallet remotely, or even locally, even if the Wallet and User Interface are produced by different or competing vendors. For example, you could use an Android User Interface from Google to control a QBitcoin Wallet.
Please see the Infrastructure page for an overview of where this protocol fits into the big picture.
Requirements
- Never use human-formatted data (for example, use base bitcoin units, not Decimal BitCoins nor Tonal BitCoins, which should only be used in formatting for humans)
- Don't require polling (for example, broadcast events for new transactions, or changes to current "work")
- Cooperative mining (see below)
- Allow calculating expected minimum fee for transactions, with either (wallet's choice) locking on the used inputs, or prebuilding the tx and error if it becomes invalid before sending
- Easy to use in a RPC-like manner, for simple applications
Debates
Binary or plaintext
- Binary is more efficient to parse and create
- Plaintext is easier for humans to debug, and avoids forming a dependency on a specific number of bits, endianness, or precision
- Binary can include custom transactions as-is for transmission
- Protobuf (binary) seems efficient and easy to use from all major languages
- JSON implementations tend to be buggy
Cooperative mining
The protocol should support submitting completed blocks, such that it can get (just) addresses from an upstream pool to generate to, and send all completed blocks to that pool for verification and counting (and possibly submission to the network). This can reduce the pool's load.
UI bundling
For more secure use by ordinary end users, UIs and Wallets should support stream-based communication over standard I/O (stdio). This allows the UI to simply execute a dedicated Wallet, without requiring the user to setup Wallet-side authentication. This also permits full compatibility with a hardware-based wallet located on a secured device (for example, a cryptographic hardware module, or a wallet device connected via RS232 or USB). (Suggestion, if UI's could talk to any stream, including a child process's stdio, as well as a pipe or a device, the flexibility would be valuable)
DRAFT 0
Everything beyond this point is strictly DRAFT, should NOT be implemented, and is subject to being completely rewritten or modified!
Conformance requirements
All diagrams, examples, and notes in this specification are non-normative, as are all sections explicitly marked non-normative. Everything else in this specification is normative.
The key words "MUST", "MUST NOT", "REQUIRED", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in the normative parts of this document are to be interpreted as described in RFC2119[1]. For readability, these words do not appear in all uppercase letters in this specification.
Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm.
Transport Layer
Must support at least reliable in-order stream data.
Such as:
- stdio (required for self-contained UI bundling)
- TLS (recommended)
- TCP (NOT recommended; see TLS)
- SSH
Consideration: There are many ways to communicate that are desirable for payment processing but which don't inherently offer TCP-like sequencing, specifically things that act like or run over serial ports (including bluetooth, infrared, possibly NFC). Some mediums like this are prone to corrupting or dropping data, but fortunately mediums like this are also unlikely to deliver data out of sequence. Some sort of simple error checking and packetizing of messages (even as simple as CRC-16 with STX+ETX wrappers as used in today's payment processing industry) should be required on all serial-like connections.
Session Layer
Presentation Layer
HTTP-with-SSE[4] request semantics
- GET for read-only access
- POST for methods (or complex read-only)
- PUT for uploads
- HEAD for metadata
Formats
These content types may be specified in the Content-Type header, and Accept header.
- application/x-www-form-urlencoded (required)
- application/x-ripemd-160 (required)
- application/x-sha (required)
- multipart/mixed (required)
- text/event-stream[4] (required for events over HTTP[2])
- application/x-bitcoin (required wallet-side)
- application/json[5] (recommended)
- application/xml[6]
Application Layer
Security
Wallets may micro-manage security as they like, but the following are RECOMMENDED security levels:
"Miner" | Can generate new addresses, get work, and report found blocks |
Merchant | Can create a transaction (only with 'proposal' flag), but not send it without user interaction |
Read-only | Can view accounts, addresses, and any public data, and combinations thereof (eg, balances) |
Financial | Can create new transactions using the wallet's keys |
Full/Admin | Can administrate (download, destroy, etc) wallet keys |
Wallets MAY grant full access to username 'admin' with a null password, to requests over stdio.
Wallets with user interactivity (e.g. smartphones) SHOULD grant Merchant access to username 'merchant' will a null password, to requests made over direct (ie, physically local, like Bluetooth) connections. User interfaces SHOULD monitor for new, unsigned transactions with the 'proposal' flag set, and prompt the user to sign or delete them. If the wallet is non-interactive (a server daemon for example), Merchant access SHOULD be disallowed.
Suggestion: there should also be provisions for PKI in place, so that Joe Walletholder knows he is paying 7-Eleven, a Japanese-owned company, rather than the 7-Eleven clerk, a divorced Wisconsin man. Such PKI should be functional independent of TLS (which might not be available or commonly implemented over serial-like connections like Bluetooth)
Object/Query Schema
May be provided in multipart/mixed, JSON, XML, etc...
Field Name | Blk | Tx | Accting | Coin | Key | Acct | Queryable | Description |
---|---|---|---|---|---|---|---|---|
id | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Unique data identifier; only guaranteed to remain the same for a single session |
type | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Type of data: 'key', 'tx', 'coin', 'block', 'account', 'accounting' |
hash | Yes | Yes | No | No | Yes | No | Yes | |
size | Yes | Yes | ?? | No | Yes | ?? | Yes | |
time | Yes | Yes | Yes | No | No | No | Yes | |
difficulty | Yes | No | No | No | No | No | Yes | |
difficultyNext | Yes | No | No | No | No | No | Yes | |
height | Yes | No | No | No | No | No | Yes | |
confirmations | Yes | Yes | ?? | Yes | No | No | Yes | |
accepted | ?? | Yes | ?? | Yes | No | No | Yes | An unconfirmed, accepted tx, is part of the current mining merkle tree |
related | Yes | Yes | ?? | ?? | ?? | ?? | Yes | Can have multiple entries (in JSON, an array value) |
coinbase | No | Yes | No | Yes | No | No | Yes | |
inputs | No | Yes | ?? | No | No | No | Yes | |
outputs | No | Yes | ?? | No | No | No | Yes | |
mine | Yes | Yes | ?? | Yes | Yes | ?? | Yes | |
network | Yes | Yes | ?? | Yes | Yes | ?? | Yes | 0xF9BEB4D9 for the main network; 0xFABFB5DA for testnet |
proposal | No | Yes | No | No | No | No | No |
Data
- Arbitrary data can be accessed with the path /data/<id>
- GET to fetch
- To get only block header, use /data/<id>/header
- To get only actual content (eg, no calculated values), use /data/<id>/raw
- Optional: PUT to upload
Information
- GET /state/<network>/connections
- Mining info: (required for mining support)
- GET /state/<network>/hashesPerSec (optional)
- GET /state/<network>/merkle
- GET /info/protocols
- Returns a list of supported protocols/versions and their URIs
Requests
Address validation
- GET /validate/address?network=<id>&address=<hash>
Calculate balance
- GET /balance?<query-object>
Match transactions to be included in the balance. To ignore spends, use matching.
Data search
- GET /dataSearch?<query-object>
- POST /dataSearch allowed for more complex queries
NOTE: To get the id rather than the data itself, use a HEAD request and check the Location header.
Generate new address
- POST /newAddress
- Optional parameter: recycle (bool) -- allows wallet to reuse a spent change address; if not supported, wallet should silently ignore
- Optional parameter: generate (bool) -- if true, make a new address on the spot, never use a preexisting one; if not supported, throw an error
- Optional parameter: account -- associate new address funds with this account id
Monitor events
- Always POST
New data available
- Query
Move between accounts
- POST /accounting/move
- dest=<accountId>
- query=<query-object> OR amount=<amount>
- Optional: comment=<string>
Transaction creation
- POST /tx/new
- send (bool) -- If true, sign and broadcast the transaction immediately
- fee (amount or range) -- If range, the wallet will try to calculate the minimum it expects the network to accept; if omitted, automatic fee range is unlimited unless bound by other factors (eg, input+strict)
- Optional: fromAccount (account id)
- Optional: input (multiple allowed of: coin id, OR coin id=>scriptSig)
- output (multiple allowed of: address=>amount pairs, OR script=>amount)
- strict (bool) -- If set, error rather than vary any parameters
- Optional: comment=<string>
Transaction broadcast
- POST /tx/send?id=<existing-tx-internal-id>
Shutdown wallet
- POST /shutdown
Events
New Data Available
p2p protocol encapsulation
Optional: Establish a WebSocket connection to /p2p to speak direct p2p protocol
Appendix A. Useful algorithms
Counting confirmations
Because numerous (most) transactions change confirmation at the same event, the only way to do this efficiently, is to monitor for new block events. When a block arrives, increment the confirmation count of all transactions with at least 1 confirmation already. Then check the new block's introduced transactions (incrementing them from 0 to 1), and delete/invalidate any revoked transactions (eg, from a competing chain).
Appendix B. JSON-RPC equivalents
backupwallet
getaccount / getlabel
getaddressesbyaccount / getaccountaddress / getaddressesbylabel
getbalance
getblockcount / getblocknumber
getconnectioncount
getdifficulty
getgenerate
gethashespersec
getinfo
getnewaddress
getreceivedbyaccount / getreceivedbylabel
getreceivedbyaddress / getamountreceived
gettransaction
getwork
help
listaccounts
listreceivedbyaccount / listreceivedbylabel
listreceivedbyaddress / getallreceived
listtransactions
move
sendfrom
sendtoaddress
setaccount / setlabel
setgenerate
settxfee
stop
validateaddress
References
- ↑ Key words for use in RFCs to Indicate Requirement Levels, S. Bradner. IETF.
- ↑ 2.0 2.1 Hypertext Transfer Protocol -- HTTP/1.1, Fielding, et al, W3C.
- ↑ SPDY Protocol, various. Google, Inc.
- ↑ 4.0 4.1 Server-Sent Events, Ian Hickson, Google, Inc.
- ↑ The application/json Media Type for JavaScript Object Notation (JSON), D. Crockford. JSON.org.
- ↑ Extensible Markup Language (XML) 1.0 (Second Edition), Tim Bray, Jean Paoli, C. M. Sperberg-McQueen and Eve Maler, W3C.