UNPKG

ripple-lib

Version:

Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html

16 lines (15 loc) 634 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "destinationAddressTag", "description": "A destination address and optional tag, with no amount included. When parsing an incoming transaction, the original specification's amount is hidden to prevent misinterpretation. For the amount that the transaction delivered, see `outcome.deliveredAmount`.", "type": "object", "properties": { "address": { "$ref": "address", "description": "An address representing the destination of the transaction." }, "tag": {"$ref": "tag"} }, "required": ["address"], "additionalProperties": false }