js-bigchaindb-driver/API.md

518 lines
15 KiB
Markdown
Raw Normal View History

2017-05-03 01:02:50 +02:00
<!-- Generated by documentation.js. Update this documentation by updating the source code. -->
### Table of Contents
- [Ed25519Keypair][1]
2018-07-05 13:53:15 +02:00
- [Parameters][2]
- [Properties][3]
- [Connection][4]
- [Parameters][5]
- [getBlock][6]
- [Parameters][7]
- [getTransaction][8]
- [Parameters][9]
- [listBlocks][10]
- [Parameters][11]
- [listOutputs][12]
- [Parameters][13]
- [listTransactions][14]
- [Parameters][15]
- [postTransaction][16]
2018-07-05 13:53:15 +02:00
- [Parameters][17]
- [postTransactionSync][18]
2018-07-05 13:53:15 +02:00
- [Parameters][19]
- [postTransactionAsync][20]
2018-07-05 13:53:15 +02:00
- [Parameters][21]
- [postTransactionCommit][22]
2018-07-05 13:53:15 +02:00
- [Parameters][23]
- [searchAssets][24]
2018-07-05 13:53:15 +02:00
- [Parameters][25]
- [searchMetadata][26]
2018-07-05 13:53:15 +02:00
- [Parameters][27]
- [Transaction][28]
- [serializeTransactionIntoCanonicalString][29]
- [Parameters][30]
- [makeCreateTransaction][31]
2018-07-05 13:53:15 +02:00
- [Parameters][32]
- [makeEd25519Condition][33]
2018-07-05 13:53:15 +02:00
- [Parameters][34]
- [makeOutput][35]
2018-07-05 13:53:15 +02:00
- [Parameters][36]
- [makeSha256Condition][37]
2018-07-05 13:53:15 +02:00
- [Parameters][38]
- [makeThresholdCondition][39]
2018-07-05 13:53:15 +02:00
- [Parameters][40]
- [makeTransferTransaction][41]
2018-07-05 13:53:15 +02:00
- [Parameters][42]
- [signTransaction][43]
2018-07-05 13:53:15 +02:00
- [Parameters][44]
- [delegateSignTransaction][45]
2018-07-05 13:53:15 +02:00
- [Parameters][46]
- [ccJsonLoad][47]
- [Parameters][48]
- [ccJsonify][49]
- [Parameters][50]
2017-05-03 01:02:50 +02:00
## Ed25519Keypair
[src/Ed25519Keypair.js:16-21][51]
2018-07-05 13:53:15 +02:00
Type: [Object][52]
2018-07-05 13:53:15 +02:00
### Parameters
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
- `seed` **[Buffer][53]?** A seed that will be used as a key derivation function
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
### Properties
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
- `publicKey` **[string][54]**
- `privateKey` **[string][54]**
## Connection
[src/connection.js:21-201][55]
2018-07-05 13:53:15 +02:00
### Parameters
- `nodes`
- `headers` **[Object][52]** Common headers for every request (optional, default `{}`)
- `timeout` **float** Optional timeout in secs (optional, default `DEFAULT_TIMEOUT`)
### getBlock
[src/connection.js:79-85][56]
2018-07-05 13:53:15 +02:00
#### Parameters
- `blockHeight`
### getTransaction
[src/connection.js:90-96][57]
2018-07-05 13:53:15 +02:00
#### Parameters
- `transactionId`
2017-05-03 01:02:50 +02:00
### listBlocks
[src/connection.js:102-108][58]
2018-07-05 13:53:15 +02:00
#### Parameters
- `transactionId`
- `status`
### listOutputs
[src/connection.js:114-126][59]
2018-07-05 13:53:15 +02:00
#### Parameters
- `publicKey`
- `spent`
### listTransactions
[src/connection.js:132-139][60]
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
#### Parameters
2017-05-03 01:02:50 +02:00
- `assetId`
- `operation`
2017-05-03 01:02:50 +02:00
### postTransaction
2017-05-03 01:02:50 +02:00
[src/connection.js:144-146][61]
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
#### Parameters
2017-05-03 01:02:50 +02:00
- `transaction`
2017-05-03 01:02:50 +02:00
### postTransactionSync
2017-05-03 01:02:50 +02:00
[src/connection.js:151-156][62]
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
#### Parameters
- `transaction`
### postTransactionAsync
[src/connection.js:162-167][63]
2018-07-05 13:53:15 +02:00
#### Parameters
2017-05-03 01:02:50 +02:00
- `transaction`
### postTransactionCommit
[src/connection.js:173-178][64]
2018-07-05 13:53:15 +02:00
#### Parameters
- `transaction`
### searchAssets
[src/connection.js:183-189][65]
2018-07-05 13:53:15 +02:00
#### Parameters
- `search`
### searchMetadata
[src/connection.js:194-200][66]
2018-07-05 13:53:15 +02:00
#### Parameters
- `search`
## Transaction
[src/transaction.js:16-280][67]
Construct Transactions
### serializeTransactionIntoCanonicalString
[src/transaction.js:22-29][68]
Canonically serializes a transaction into a string by sorting the keys
2018-07-05 13:53:15 +02:00
#### Parameters
- `transaction`
2018-07-05 13:53:15 +02:00
- `null` **[Object][52]** (transaction)
2018-07-05 13:53:15 +02:00
Returns **[string][54]** a canonically serialized Transaction
### makeCreateTransaction
[src/transaction.js:80-87][69]
Generate a `CREATE` transaction holding the `asset`, `metadata`, and `outputs`, to be signed by
the `issuers`.
2018-07-05 13:53:15 +02:00
#### Parameters
2018-07-05 13:53:15 +02:00
- `asset` **[Object][52]** Created asset's data
- `metadata` **[Object][52]** Metadata for the Transaction
- `outputs` **[Array][70]&lt;[Object][52]>** Array of Output objects to add to the Transaction.
2017-05-03 01:02:50 +02:00
Think of these as the recipients of the asset after the transaction.
For `CREATE` Transactions, this should usually just be a list of
Outputs wrapping Ed25519 Conditions generated from the issuers' public
keys (so that the issuers are the recipients of the created asset).
- `issuers` **...[Array][70]&lt;[string][54]>** Public key of one or more issuers to the asset being created by this
2017-05-03 01:02:50 +02:00
Transaction.
Note: Each of the private keys corresponding to the given public
keys MUST be used later (and in the same order) when signing the
Transaction (`signTransaction()`).
2018-07-05 13:53:15 +02:00
Returns **[Object][52]** Unsigned transaction -- make sure to call signTransaction() on it before
2017-05-03 01:02:50 +02:00
sending it off!
### makeEd25519Condition
[src/transaction.js:96-107][71]
Create an Ed25519 Cryptocondition from an Ed25519 public key
to put into an Output of a Transaction
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
#### Parameters
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
- `publicKey` **[string][54]** base58 encoded Ed25519 public key for the recipient of the Transaction
- `json` **[boolean][72]** If true returns a json object otherwise a crypto-condition type (optional, default `true`)
2018-07-05 13:53:15 +02:00
Returns **[Object][52]** Ed25519 Condition (that will need to wrapped in an Output)
### makeOutput
2017-05-03 01:02:50 +02:00
[src/transaction.js:117-137][73]
2017-05-03 01:02:50 +02:00
Create an Output from a Condition.
Note: Assumes the given Condition was generated from a
single public key (e.g. a Ed25519 Condition)
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
#### Parameters
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
- `condition` **[Object][52]** Condition (e.g. a Ed25519 Condition from `makeEd25519Condition()`)
- `amount` **[string][54]** Amount of the output (optional, default `'1'`)
2018-07-05 13:53:15 +02:00
Returns **[Object][52]** An Output usable in a Transaction
### makeSha256Condition
[src/transaction.js:145-153][74]
Create a Preimage-Sha256 Cryptocondition from a secret to put into an Output of a Transaction
2018-07-05 13:53:15 +02:00
#### Parameters
2018-07-05 13:53:15 +02:00
- `preimage` **[string][54]** Preimage to be hashed and wrapped in a crypto-condition
- `json` **[boolean][72]** If true returns a json object otherwise a crypto-condition type (optional, default `true`)
2018-07-05 13:53:15 +02:00
Returns **[Object][52]** Preimage-Sha256 Condition (that will need to wrapped in an Output)
### makeThresholdCondition
[src/transaction.js:162-176][75]
Create an Sha256 Threshold Cryptocondition from threshold to put into an Output of a Transaction
2018-07-05 13:53:15 +02:00
#### Parameters
- `threshold` **[number][76]**
- `subconditions` **[Array][70]** (optional, default `[]`)
- `json` **[boolean][72]** If true returns a json object otherwise a crypto-condition type (optional, default `true`)
2018-07-05 13:53:15 +02:00
Returns **[Object][52]** Sha256 Threshold Condition (that will need to wrapped in an Output)
### makeTransferTransaction
[src/transaction.js:199-220][77]
Generate a `TRANSFER` transaction holding the `asset`, `metadata`, and `outputs`, that fulfills
the `fulfilledOutputs` of `unspentTransaction`.
2018-07-05 13:53:15 +02:00
#### Parameters
- `unspentOutputs`
- `outputs` **[Array][70]&lt;[Object][52]>** Array of Output objects to add to the Transaction.
2017-05-03 01:02:50 +02:00
Think of these as the recipients of the asset after the transaction.
For `TRANSFER` Transactions, this should usually just be a list of
Outputs wrapping Ed25519 Conditions generated from the public keys of
the recipients.
2018-07-05 13:53:15 +02:00
- `metadata` **[Object][52]** Metadata for the Transaction
- `unspentTransaction` **[Object][52]** Previous Transaction you have control over (i.e. can fulfill
its Output Condition)
- `OutputIndices` **...[number][76]** Indices of the Outputs in `unspentTransaction` that this
2017-05-03 01:02:50 +02:00
Transaction fulfills.
Note that listed public keys listed must be used (and in
the same order) to sign the Transaction
2017-05-03 01:02:50 +02:00
(`signTransaction()`).
2018-07-05 13:53:15 +02:00
Returns **[Object][52]** Unsigned transaction -- make sure to call signTransaction() on it before
2017-05-03 01:02:50 +02:00
sending it off!
### signTransaction
2017-05-03 01:02:50 +02:00
[src/transaction.js:233-257][78]
2017-05-03 01:02:50 +02:00
Sign the given `transaction` with the given `privateKey`s, returning a new copy of `transaction`
that's been signed.
Note: Only generates Ed25519 Fulfillments. Thresholds and other types of Fulfillments are left as
an exercise for the user.
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
#### Parameters
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
- `transaction` **[Object][52]** Transaction to sign. `transaction` is not modified.
- `privateKeys` **...[string][54]** Private keys associated with the issuers of the `transaction`.
2017-05-03 01:02:50 +02:00
Looped through to iteratively sign any Input Fulfillments found in
the `transaction`.
2018-07-05 13:53:15 +02:00
Returns **[Object][52]** The signed version of `transaction`.
2017-05-03 01:02:50 +02:00
### delegateSignTransaction
[src/transaction.js:266-279][79]
Delegate signing of the given `transaction` returning a new copy of `transaction`
that's been signed.
#### Parameters
- `transaction` **[Object][52]** Transaction to sign. `transaction` is not modified.
- `signFn` **[Function][80]** Function signing the transaction, expected to return the fulfillment.
Returns **[Object][52]** The signed version of `transaction`.
2017-05-03 01:02:50 +02:00
## ccJsonLoad
[src/utils/ccJsonLoad.js:14-44][81]
Loads a crypto-condition class (Fulfillment or Condition) from a BigchainDB JSON object
2018-07-05 13:53:15 +02:00
### Parameters
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
- `conditionJson` **[Object][52]**
2017-05-03 01:02:50 +02:00
Returns **cc.Condition** Ed25519 Condition (that will need to wrapped in an Output)
## ccJsonify
[src/utils/ccJsonify.js:12-65][82]
Serializes a crypto-condition class (Condition or Fulfillment) into a BigchainDB-compatible JSON
2018-07-05 13:53:15 +02:00
### Parameters
2017-05-03 01:02:50 +02:00
- `fulfillment` **cc.Fulfillment** base58 encoded Ed25519 public key for recipient of the Transaction
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
Returns **[Object][52]** Ed25519 Condition (that will need to wrapped in an Output)
2017-05-03 01:02:50 +02:00
[1]: #ed25519keypair
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[2]: #parameters
[3]: #properties
[4]: #connection
[5]: #parameters-1
[6]: #getblock
[7]: #parameters-2
[8]: #gettransaction
[9]: #parameters-3
[10]: #listblocks
[11]: #parameters-4
[12]: #listoutputs
[13]: #parameters-5
[14]: #listtransactions
[15]: #parameters-6
[16]: #posttransaction
2018-07-05 13:53:15 +02:00
[17]: #parameters-7
[18]: #posttransactionsync
2018-07-05 13:53:15 +02:00
[19]: #parameters-8
[20]: #posttransactionasync
2018-07-05 13:53:15 +02:00
[21]: #parameters-9
[22]: #posttransactioncommit
2018-07-05 13:53:15 +02:00
[23]: #parameters-10
[24]: #searchassets
2018-07-05 13:53:15 +02:00
[25]: #parameters-11
[26]: #searchmetadata
2018-07-05 13:53:15 +02:00
[27]: #parameters-12
[28]: #transaction
2018-07-05 13:53:15 +02:00
[29]: #serializetransactionintocanonicalstring
2017-05-03 01:02:50 +02:00
[30]: #parameters-13
2017-05-03 01:02:50 +02:00
[31]: #makecreatetransaction
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[32]: #parameters-14
2017-05-03 01:02:50 +02:00
[33]: #makeed25519condition
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[34]: #parameters-15
2017-05-03 01:02:50 +02:00
[35]: #makeoutput
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[36]: #parameters-16
2017-05-03 01:02:50 +02:00
[37]: #makesha256condition
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[38]: #parameters-17
2017-05-03 01:02:50 +02:00
[39]: #makethresholdcondition
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[40]: #parameters-18
2017-05-03 01:02:50 +02:00
[41]: #maketransfertransaction
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[42]: #parameters-19
2017-05-03 01:02:50 +02:00
[43]: #signtransaction
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[44]: #parameters-20
2017-05-03 01:02:50 +02:00
[45]: #delegatesigntransaction
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[46]: #parameters-21
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[47]: #ccjsonload
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[48]: #parameters-22
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[49]: #ccjsonify
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[50]: #parameters-23
2017-05-03 01:02:50 +02:00
[51]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/Ed25519Keypair.js#L16-L21 "Source code on GitHub"
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[52]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[53]: https://nodejs.org/api/buffer.html
2017-05-03 01:02:50 +02:00
2018-07-05 13:53:15 +02:00
[54]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
2017-05-03 01:02:50 +02:00
[55]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/connection.js#L21-L201 "Source code on GitHub"
[56]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/connection.js#L79-L85 "Source code on GitHub"
[57]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/connection.js#L90-L96 "Source code on GitHub"
[58]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/connection.js#L102-L108 "Source code on GitHub"
[59]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/connection.js#L114-L126 "Source code on GitHub"
[60]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/connection.js#L132-L139 "Source code on GitHub"
[61]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/connection.js#L144-L146 "Source code on GitHub"
[62]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/connection.js#L151-L156 "Source code on GitHub"
[63]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/connection.js#L162-L167 "Source code on GitHub"
[64]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/connection.js#L173-L178 "Source code on GitHub"
[65]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/connection.js#L183-L189 "Source code on GitHub"
[66]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/connection.js#L194-L200 "Source code on GitHub"
[67]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/transaction.js#L16-L280 "Source code on GitHub"
[68]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/transaction.js#L22-L29 "Source code on GitHub"
[69]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/transaction.js#L80-L87 "Source code on GitHub"
[70]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array
[71]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/transaction.js#L96-L107 "Source code on GitHub"
[72]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
[73]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/transaction.js#L117-L137 "Source code on GitHub"
[74]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/transaction.js#L145-L153 "Source code on GitHub"
[75]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/transaction.js#L162-L176 "Source code on GitHub"
[76]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number
[77]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/transaction.js#L199-L220 "Source code on GitHub"
[78]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/transaction.js#L233-L257 "Source code on GitHub"
[79]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/transaction.js#L266-L279 "Source code on GitHub"
[80]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function
[81]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/utils/ccJsonLoad.js#L14-L44 "Source code on GitHub"
[82]: https://github.com/bigchaindb/js-bigchaindb-driver/blob/3c76d3bb21e8cac17c3ca69cb9bf31b7fbc115ae/src/utils/ccJsonify.js#L12-L65 "Source code on GitHub"