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": {}
}Get multisig wallet contracts and their configuration
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 endpoint retrieves multisig wallet contracts from the TON blockchain. Multisig wallets require multiple signatures to execute transactions, providing enhanced security for shared funds.
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.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.
multisig/wallets endpoint is essential for managing multisig wallets:
curl -X GET \
'https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/multisig/wallets?limit=5' \
-H 'accept: application/json'
Multisig wallet address
Filter by proposer address
Maximum number of wallets to return
Number of wallets to skip
Was this page helpful?