# subnet-convictions (/docs/query/subnet-convictions)

Per hotkey: locked mass, conviction, and the estimated blocks until its
conviction reaches 10% of the subnet's outstanding alpha. That per-hotkey
figure is a projection heuristic, not a takeover trigger: the ownership
takeover in `change_subnet_owner_if_needed` requires the subnet to be
at least \~1 year old (2,629,800 blocks) and the total aggregate
conviction across all lockers to reach 10% of `SubnetAlphaOut`, at
which point the highest-conviction hotkey's coldkey becomes the subnet
owner. Projections assume the lock rates and alpha out stay constant.

**Category:** Locks & conviction

## Parameters [#parameters]

| Parameter | Type    | Description      |
| --------- | ------- | ---------------- |
| `netuid`  | integer | Subnet to query. |

## CLI [#cli]

```bash
btcli query subnet-convictions --netuid <integer> --json
```

## Python [#python]

```python
import bittensor as sub

async with sub.Client("finney") as client:
    result = await client.read("subnet_convictions", netuid=1)
```
