# subnet-start-schedule (/docs/query/subnet-start-schedule)

All values are block numbers: the subnet can start once the current block
reaches `earliest_start_block` (registration block plus the chain's delay).

**Category:** Subnets

## Parameters [#parameters]

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

## CLI [#cli]

```bash
btcli query subnet-start-schedule --netuid <integer> --json
```

## Python [#python]

Namespace method (autocomplete, signature help):

```python
import bittensor as bt

sub = bt.Subtensor()
result = sub.subnets.subnet_start_schedule(netuid=1)
```

Or dispatch by name, as an agent would:

```python
result = sub.read("subnet_start_schedule", netuid=1)
```

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

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

* Storage [`SubtensorModule.NetworkRegisteredAt`](/code/pallets/subtensor/src/lib.rs#L2043)
* Constant [`SubtensorModule.InitialStartCallDelay`](/code/runtime/src/lib.rs#L851)

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