Get Multisig Orders
TON node API
multisig/orders | TON v3
The multisig/orders endpoint retrieves pending and executed orders for multisig wallets. multisig/orders on TON v3 via Chainstack.
GET
Get Multisig Orders
Multisig Orders
Themultisig/orders endpoint retrieves pending and executed orders for multisig wallets. Orders represent proposed transactions that require multiple signatures before execution.
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
multisig_address(string, optional) — Filter by multisig wallet address.order_address(string, optional) — Filter by specific order contract address.is_executed(boolean, optional) — Filter by execution status.limit(integer, optional) — Maximum number of orders to return. Default:10.offset(integer, optional) — Number of orders to skip for pagination. Default:0.
Response
-
multisig_orders(array) — Array of order objects:address(string) — Order contract address.multisig_address(string) — Parent multisig wallet address.order_seqno(integer) — Order sequence number.threshold(integer) — Required number of signatures.signers_num(integer) — Total number of possible signers.approvals_num(integer) — Current number of approvals.approvals(array) — List of addresses that have approved.expiration_date(integer) — Order expiration timestamp.is_executed(boolean) — Whether the order has been executed.
-
address_book(object) — Address book mapping.
Use case
Themultisig/orders endpoint is crucial for multisig transaction management:
- Signer interfaces showing orders awaiting their approval.
- Treasury dashboards displaying pending transactions.
- Alert systems notifying when orders need signatures.
- Audit tools tracking multisig transaction history.
- Governance tools managing DAO proposals and executions.
Query Parameters
Filter by multisig wallet address
Filter by order contract address
Filter by execution status
Maximum number of orders to return
Number of orders to skip
Last modified on June 4, 2026