Skip to main content
GET
/
multisig
/
wallets
Get Multisig Wallets
curl --request GET \
  --url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/multisig/wallets
{
  "multisig_wallets": [
    {
      "address": "<string>",
      "seqno": 123,
      "threshold": 123,
      "signers": [
        "<string>"
      ],
      "proposers": [
        "<string>"
      ],
      "orders_count": 123
    }
  ],
  "address_book": {}
}

Multisig Wallets

The multisig/wallets endpoint retrieves multisig wallet contracts from the TON blockchain. Multisig wallets require multiple signatures to execute transactions, providing enhanced security for shared funds.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
TON billing: full (1 RU)This method is always billed as full. See Request units — TON method scope.

Parameters

  • address (string, optional) — Filter by multisig wallet address.
  • proposer_address (string, optional) — Filter by proposer address.
  • limit (integer, optional) — Maximum number of wallets to return. Default: 10.
  • offset (integer, optional) — Number of wallets to skip for pagination. Default: 0.

Response

  • multisig_wallets (array) — Array of multisig wallet objects:
    • address (string) — Multisig wallet address.
    • seqno (integer) — Current sequence number.
    • threshold (integer) — Required number of signatures.
    • signers (array) — List of signer addresses.
    • proposers (array) — List of proposer addresses.
    • orders_count (integer) — Number of pending orders.
  • address_book (object) — Address book mapping.

Use case

The multisig/wallets endpoint is essential for managing multisig wallets:
  1. Treasury management interfaces displaying wallet configuration.
  2. DAO tools showing governance wallet status.
  3. Security audits reviewing multisig setup and signers.
  4. Wallet applications supporting multisig functionality.
  5. Organization tools managing shared funds.
Here’s an example of getting multisig wallets:
curl -X GET \
  'https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/multisig/wallets?limit=5' \
  -H 'accept: application/json'
Use the multisig/orders endpoint to see pending transactions that require signatures for these wallets.

Query Parameters

address
string

Multisig wallet address

proposer_address
string

Filter by proposer address

limit
integer
default:10

Maximum number of wallets to return

offset
integer
default:0

Number of wallets to skip

Response

200 - application/json

Successful response

multisig_wallets
object[]
address_book
object

Address book mapping

Last modified on June 4, 2026