Queries

is-fast-blocks

Whether the chain runs fast blocks (0.25s slots, local/e2e testing mode).

View as Markdown

Category: Chain

Parameters

This read takes no parameters.

CLI

btcli query is-fast-blocks --json

Python

Typed namespace method (autocomplete, signature help):

import bittensor as sub

async with sub.Client("finney") as client:
    result = await client.chain.is_fast_blocks()

Or dispatch by name, as an agent would:

result = await client.read("is_fast_blocks")