# multisig (/docs/query/multisig)

**Category:** Accounts & keys

## Parameters [#parameters]

| Parameter      | Type   | Description                                            |
| -------------- | ------ | ------------------------------------------------------ |
| `account_ss58` | string | Multisig account the pending operation belongs to.     |
| `call_hash`    | string | Hash of the multisig call, as 0x-prefixed or bare hex. |

## CLI [#cli]

```bash
btcli query multisig --account <ss58|name> --call-hash <string> --json
```

## Python [#python]

Namespace method (autocomplete, signature help):

```python
import bittensor as bt

sub = bt.Subtensor()
result = sub.balances.multisig(account_ss58="5F...", call_hash="...")
```

Or dispatch by name, as an agent would:

```python
result = sub.read("multisig", account_ss58="5F...", call_hash="...")
```

Async is the same surface awaited: `async with bt.Subtensor() as client:`.

## On-chain implementation [#on-chain-implementation]

* Storage `Multisig.Multisigs` — implemented by Substrate's `pallet_multisig`, outside this repository's pallets.

Every file is browsable under [/code](/code) exactly as built into the runtime.
