UNPKG

@airgap/astar

Version:

The @airgap/astar is an Astar implementation of the ICoinProtocol interface from @airgap/coinlib-core.

37 lines (36 loc) 863 B
{ "$ref": "#/definitions/AstarTransactionSignRequest", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "AstarTransactionSignRequest": { "additionalProperties": false, "properties": { "callbackURL": { "type": "string" }, "publicKey": { "type": "string" }, "transaction": { "$ref": "#/definitions/SubstrateUnsignedTransaction" } }, "required": ["publicKey", "transaction"], "type": "object" }, "SubstrateUnsignedTransaction": { "additionalProperties": false, "properties": { "encoded": { "type": "string" }, "type": { "enum": ["unsigned"], "type": "string" } }, "required": ["encoded", "type"], "type": "object" } } }