UNPKG

airgap-coin-lib

Version:

The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.

44 lines 886 B
{ "$ref": "#/definitions/SignedBitcoinTransaction", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "SignedBitcoinTransaction": { "additionalProperties": false, "properties": { "accountIdentifier": { "type": "string" }, "amount": { "type": "string" }, "fee": { "type": "string" }, "from": { "items": { "type": "string" }, "type": "array" }, "to": { "items": { "type": "string" }, "type": "array" }, "transaction": { "type": "string" } }, "required": [ "accountIdentifier", "amount", "fee", "from", "to", "transaction" ], "type": "object" } } }