bittensor.utils.subnets#
Classes#
This class is not used within the bittensor package, but is actively used by the community. |
Module Contents#
- class bittensor.utils.subnets.SubnetsAPI(wallet)#
Bases:
abc.ABC
This class is not used within the bittensor package, but is actively used by the community.
- Parameters:
wallet (bittensor_wallet.Wallet)
- async __call__(*args, **kwargs)#
- dendrite#
- abstract prepare_synapse(*args, **kwargs)#
Prepare the synapse-specific payload.
- Return type:
Any
- abstract process_responses(responses)#
Process the responses from the network.
- Parameters:
responses (list[Union[bittensor.core.synapse.Synapse, Any]])
- Return type:
Any
- async query_api(axons, deserialize=False, timeout=12, **kwargs)#
Queries the API nodes of a subnet using the given synapse and bespoke query function.
- Parameters:
- Returns:
The result of the process_responses_fn.
- Return type:
Any
- wallet#