Package Exports
- cardano-hw-interop-lib
- cardano-hw-interop-lib/dist/src/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cardano-hw-interop-lib) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
cardano-hw-interoperability-lib
JavaScript library to validate and transform Cardano transactions accroding to CIP-0021.
Available methods
The provided functions operate on either a:
- transaction body - only the transaction body as defined in the shelley-ma.cddl#49
- transaction - transaction as defined in the shelley-ma.cddl#13
- raw transaction - transaction outputted by
cardano-cli transaction build-raw
decode
Parses a CBOR encoded input into a TransactionBody
, Transaction
or RawTransaction
, respectively. If the CBOR is malformed the parser will throw an error. Available methods:
decodeTxBody(txBodyCbor: Buffer) => TransactionBody
decodeTx(txCbor: Buffer) => Transaction
decodeRawTx(rawTxCbor: Buffer) => RawTransaction
The TransactionBody
object mostly follows the CDDL, but sometimes makes small deviations for better developer experience, such as parsing certain tuples as objects, or maps as arrays because working with maps is cumbersome in JavaScript.
When parsing a transaction or raw transaction, fields other than the transaction body are only decoded from CBOR and are not parsed according to the CDDL, in TypeScript they have type unknown
.
encode
Takes a TransactionBody
, Transaction
or RawTransaction
object and encodes it back to CBOR using canonical CBOR serialization format as specified in Section 3.9 of CBOR RFC. Available methods:
encodeTxBody(txBody: TransactionBody) => Buffer
encodeTx(tx: Transaction) => Buffer
encodeRawTx(rawTx: RawTransaction) => Buffer
validate
Takes a CBOR encoded input, validates it according to CIP-0021
and returns an array of found validation errors.
The validation errors are of type ValidationError
and we distinguish between fixable and unfixable errors. If the validate
function reports:
- no fixable and no unfixable errors then the CBOR is already fully compliant with CIP-0021.
- only fixable errors then a call to a
transform
function will solve the found errors and the transcation will be compliant with CIP-0021. - unfixable errors then the library is not able to transform the CBOR by itself.
Available methods:
validateTxBody(txBodyCbor: Buffer) => ValidationError[]
validateTx(txCbor: Buffer) => ValidationError[]
validateRawTx(rawTxCbor: Buffer) => ValidationError[]
The list of all possible validation errors can be found here
transform
Takes a TransactionBody
, Transaction
or RawTransaction
object and applies non-destructive transformations on it to fix fixable validation errors. Returns a new transformed object of the same type. Available methods:
transformTxBody(txBody: TransactionBody) => TransactionBody
transformTx(tx: Transaction) => Transaction
transformRawTx(rawTx: RawTransaction) => RawTransaction
Note: the length of the resulting CBOR might be increased or decreased which might affect the minimum required fee. An increase in CBOR length should be very rare.