XRPL JSON-RPC Methods
required
, but not necessarily the auto-fillable
.
Object
tx_json
: Object
- (Required) JSON specification of the transaction.autofill
: Boolean
- (Optional) Defaults to true
. Set to false
to skip auto-filling parameters.submit
: Boolean
- (Optional) Defaults to true
. Set to false
to skip submitting the transaction.submit
to false
, your dapp will need to encode the signed tx_json
to the required binary format, before you can send it as tx_blob
to an XRPL node using the submit command.
Object
tx_json
: Object
- JSON specification of the complete transaction as signed, including any fields that were auto-filled.Object
tx_signer
: String
- (Required) The XRPL address of the signer.tx_json
: Object
- (Required) JSON specification of the transaction.autofill
: Boolean
- (Optional) Defaults to false
. Set to true
to auto-fill parameters.submit
: Boolean
- (Optional) Defaults to false
. Set to true
to submit the transaction.autofill
and submit
both defaults to false
, since explicit transaction specification and controlled submission is typically needed for multi-signed transactions.
Object
tx_json
: Object
- JSON specification of the complete transaction as signed, including any fields that were auto-filled.submit
parameter has been set to true
.