Queries

crowdloan-contributors

Contributors and amounts for a crowdloan, with amounts in TAO.

View as Markdown

Category: Leases & crowdloans

Parameters

ParameterTypeDescription
crowdloan_idintegerId of the crowdloan whose contributors to list.

CLI

btcli query crowdloan-contributors --crowdloan-id <integer> --json

Python

Typed namespace method (autocomplete, signature help):

import bittensor as sub

async with sub.Client("finney") as client:
    result = await client.leasing.crowdloan_contributors(crowdloan_id=1)

Or dispatch by name, as an agent would:

result = await client.read("crowdloan_contributors", crowdloan_id=1)