Files
xrpl-dev-portal/docs/tutorials/best-practices/key-management/set-up-multi-signing.md
mDuo13 224b270a35 Rename 'Change or Remove Regular Key' & cleanup
- Update links to the renamed tutorial
  - No redirect added yet (will be done alongside other tutorials-iav4
    redirects)
- Remove redundant "set-regular-key" JS/Py sample code
- Move Go sample code to updated JS/Py folder
- Add a little more detail to 'Assign...' tutorial for SEO (so people
  looking for key rotation practices will find it)
2026-02-24 11:32:09 -08:00

6.5 KiB

seo, labels
seo labels
description
Add a signer list to your account to enable multi-signing.
Security

Set Up Multi-Signing

This tutorial shows up how to set up multi-signing on your XRP Ledger account, which allows you to authorize transactions using signatures from a combination of keys. Various configurations are possible, but this tutorial shows a straightforward configuration requiring 2 of 3 signers to authorize a transaction.

Goals

By following this tutorial, you should learn how to:

  • Generate key pairs you can use for multi-signing.
  • Add or update a signer list on your account.
  • Look up the signer list associated with an account, including its configured weights and quorum.

Prerequisites

To complete this tutorial, you should:

Source Code

You can find the complete source code for this tutorial's examples in the {% repo-link path="_code-samples/multisigning/" %}code samples section of this website's repository{% /repo-link %}.

Steps

1. Install dependencies

{% tabs %} {% tab label="JavaScript" %} From the code sample folder, use npm to install dependencies:

npm i

{% /tab %}

{% tab label="Python" %} From the code sample folder, set up a virtual environment and use pip to install dependencies:

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

{% /tab %} {% /tabs %}

2. Connect and get account(s)

To get started, import the client library and instantiate an API client. For this tutorial, you need one account, which the sample code funds using the Testnet faucet; you could also use an existing account.

{% tabs %} {% tab label="JavaScript" %} {% code-snippet file="/_code-samples/multisigning/js/set-up-multi-signing.js" language="js" before="// Generate key pairs" /%} {% /tab %}

{% tab label="Python" %} {% code-snippet file="/_code-samples/multisigning/py/set-up-multi-signing.py" language="py" before="# Generate key pairs" /%} {% /tab %} {% /tabs %}

3. Prepare signer keys

Each signer on your list needs a key pair they can use to sign transactions. As the account owner, you only need to know the addresses, not the secret keys, of each signer. One party knowing all the secret keys might defeat the purpose of multi-signing, depending on your use case. These addresses can have funded accounts in the ledger, but they don't have to.

Each signer should securely generate and store their own key pair, as you would any time you generate keys for an XRP Ledger account.

{% tabs %} {% tab label="JavaScript" %} {% code-snippet file="/_code-samples/multisigning/js/set-up-multi-signing.js" language="js" from="// Generate key pairs" before="// Send SignerListSet transaction" /%} {% /tab %}

{% tab label="Python" %} {% code-snippet file="/_code-samples/multisigning/py/set-up-multi-signing.py" language="py" from="# Generate key pairs" before="# Send SignerListSet transaction" /%} {% /tab %} {% /tabs %}

For purposes of this tutorial, the sample code generates three key pairs and saves their addresses into an array.

4. Send SignerListSet transaction

Use a [SignerListSet transaction][] to assign a multi-signing list to your account. For this transaction, you set the total weight needed for a quorum in the SignerQuorum field, and the list of signers with their individual weights in the SignerEntries field. For 2-of-3 multi-signing, give each of the three signers a weight of 1 and set the quorum to 2. Note that each object in the SignerEntries array must be a wrapper object with a single SignerEntry field.

{% tabs %} {% tab label="JavaScript" %} {% code-snippet file="/_code-samples/multisigning/js/set-up-multi-signing.js" language="js" from="// Send SignerListSet transaction" before="// Confirm signer list" /%} {% /tab %}

{% tab label="Python" %} {% code-snippet file="/_code-samples/multisigning/py/set-up-multi-signing.py" language="py" from="# Send SignerListSet transaction" before="# Confirm signer list" /%} {% /tab %} {% /tabs %}

{% admonition type="success" name="Tip: Replacing Signer Lists" %} If you already have a multi-signing list configured for your account, you can use this same process to replace it with a new list. You can even use the old list to authorize the transaction. {% /admonition %}

5. Confirm that the signer list is assigned to your account

If the SignerListSet transaction succeeded, the list should now be associated with your account. For further confirmation, you can look up the list using the [account_info method][].

{% tabs %} {% tab label="JavaScript" %} {% code-snippet file="/_code-samples/multisigning/js/set-up-multi-signing.js" language="js" from="// Confirm signer list" /%} {% /tab %}

{% tab label="Python" %} {% code-snippet file="/_code-samples/multisigning/py/set-up-multi-signing.py" language="py" from="# Confirm signer list" /%} {% /tab %} {% /tabs %}

{% admonition type="info" name="Note" %} There currently is no way to have more than one multi-signing list assigned to your account, but the protocol is built to be expandable; every signer list has an ID number of 0, so that a future amendment could allow lists with other IDs. This is why the signer_lists field is an array in the account_info response. {% /admonition %}

Next Steps

At this point, you can send a multi-signed transaction. You may also want to:

See Also

{% raw-partial file="/docs/_snippets/common-links.md" /%}