Home

submit_multisigned

POST
https://xrp.nownodes.io/

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Submits a multi-signed transaction to the XRP Ledger. Multi-signing allows multiple accounts to jointly authorize transactions from a single account using a signer list. This method submits a transaction that has already been signed by the required number of signers.

Body

application/json

Submits a multi-signed transaction to the XRP Ledger. Multi-signing allows multiple accounts to jointly authorize transactions from a single account using a signer list. This method submits a transaction that has already been signed by the required number of signers.

JSON-RPC request payload.

methodstringsubmit_multisignedrequired

The JSON-RPC method name

paramsArray<object>required

Ordered JSON-RPC method parameters.

Show child attributes
tx_jsonobjectrequired

XRPL transaction hash.

Show child attributes
Accountstringrequired

The account that is sending the transaction (the multi-signed account).

TransactionTypestringrequired

The type of transaction to submit.

Feestringrequired

The transaction fee in drops of XRP. Multi-signed transactions typically require higher fees due to larger size.

Sequenceintegerrequired

The sequence number for the transaction.

Flagsinteger

Transaction flags.

  • 262144: tfClearNoRipple - Clear the NoRipple flag on a trust line
SignersArray<object>required

Array of signers who have signed this transaction. Must meet the quorum requirements defined in the account's signer list.

Show child attributes
Signerobject

Signer value.

Show child attributes
Accountstringrequired

The account of one of the signers.

SigningPubKeystringrequired

The public key used by this signer to sign the transaction.

TxnSignaturestringrequired

The cryptographic signature from this signer.

SigningPubKeystring

Empty string for multi-signed transactions. The actual signing is done by the signers in the Signers array.

hashstring

(Optional) The hash of the transaction. Can be provided for verification purposes.

LimitAmountobject

For TrustSet transactions, the trust line limit to set.

Show child attributes
currencystring

The currency code for the trust line.

issuerstring

The issuer of the currency.

valuestring

The limit amount for the trust line.

Response

200OK

HTTP 200 response for submit_multisigned. The body contains either a successful result or a method-level JSON-RPC error.

400Bad Request

Bad Request. The request body is malformed or contains invalid JSON-RPC parameters.

401Unauthorized

Unauthorized: API key is present but rejected by the NOWNodes gateway.

405Method Not Allowed

Method Not Allowed. Returned by the NOWNodes gateway for malformed or unsupported gateway-level requests.

422Unprocessable Entity

Missing API key. The NOWNodes gateway returns plain text for this error.

500Internal Server Error

Internal Server Error. The gateway or node failed while processing the request.