No project description provided
Project description
Sentinel SDK
Sentinel SDK is a Python toolkit for extracting and working with Bittensor blockchain data. It provides a typed, versioned API for reading chain state — extrinsics, events, hyperparameters, metagraph snapshots, and subnet info — without dealing with raw substrate calls.
Features:
- Blockchain data extraction — extrinsics, events, hyperparameters, metagraph snapshots, and subnet info with typed Pydantic DTOs
- Pluggable providers — connect via the Bittensor SDK directly or through Pylon caching proxy
- CLI — query chain data from the terminal (extrinsics, events, hyperparameters, metagraph)
- Testing utilities — factories and a fake provider for writing tests without a live node (see docs/testing.md)
- Versioned API — uses ApiVer (
sentinel.v1) to guarantee backwards compatibility
Installation
pip install bittensor-sentinel
Usage
[!IMPORTANT] This package uses ApiVer, make sure to import
sentinel.v1.
As a library
from sentinel.v1.providers.bittensor import bittensor_provider
from sentinel.v1.services.sentinel import sentinel_service
provider = bittensor_provider()
service = sentinel_service(provider)
# Extract extrinsics and events from a block
block = service.ingest_block(block_number=4_000_000)
for extrinsic in block.extrinsics:
print(extrinsic.call.call_module, extrinsic.call.call_function)
# Extract metagraph snapshot for a subnet
subnet = service.ingest_subnet(netuid=1, block_number=4_000_000)
snapshot = subnet.metagraph
for neuron in snapshot.neurons:
print(neuron.uid, neuron.neuron.hotkey.hotkey)
CLI
# Read extrinsics from a block
sentinel extrinsics --block 4000000
# Read events from a block
sentinel events --block 4000000
# Query subnet metagraph
sentinel subnet --netuid 1 metagraph
# JSON output
sentinel -f json extrinsics --block 4000000
Pylon provider
Pylon is a caching proxy for the Bittensor network that provides faster neuron and validator queries. Sentinel supports it as an alternative provider.
- Run a Pylon instance (see Pylon documentation).
- Set the environment variables (optional —
PYLON_URLdefaults tohttp://localhost:8000):export PYLON_URL="http://your-pylon-instance:8090" export PYLON_OPEN_ACCESS_TOKEN="your-token" # only if Pylon requires authentication
Use PylonProvider as a drop-in replacement for BittensorProvider:
from sentinel.v1.providers.pylon import pylon_provider
# Uses PYLON_URL env var, or pass url directly
provider = pylon_provider(url="http://localhost:8090")
# Fetch metagraph (constructed from Pylon neuron data, always lite mode)
metagraph = provider.get_metagraph(netuid=1, block_number=100000, lite=True)
# Pylon-specific methods (not in the base BlockchainProvider interface)
neurons = provider.get_neurons(netuid=1, block_number=100000)
validators = provider.get_validators(netuid=1, block_number=100000)
latest = provider.get_latest_neurons(netuid=1)
[!NOTE] PylonProvider does not support block events, extrinsics listing, or subnet hyperparameters. These methods raise
NotImplementedError. UseBittensorProviderfor full chain access.
Or via CLI with the --provider pylon flag:
sentinel subnet --netuid 1 --provider pylon metagraph
sentinel subnet --netuid 1 --provider pylon --network http://my-pylon:8090 metagraph
Versioning
This package uses Semantic Versioning.
TL;DR you are safe to use compatible release version specifier ~=MAJOR.MINOR in your pyproject.toml or requirements.txt.
Additionally, this package uses ApiVer to further reduce the risk of breaking changes.
This means, the public API of this package is explicitly versioned, e.g. sentinel.v1, and will not change in a backwards-incompatible way even when sentinel.v2 is released.
Internal packages, i.e. prefixed by sentinel._ do not share these guarantees and may change in a backwards-incompatible way at any time even in patch releases.
Development
Pre-requisites:
Ideally, you should run nox -t format lint before every commit to ensure that the code is properly formatted and linted.
Before submitting a PR, make sure that tests pass as well, you can do so using:
nox -t check # equivalent to `nox -t format lint test`
If you wish to install dependencies into .venv so your IDE can pick them up, you can do so using:
uv sync --all-extras --dev
Release process
Run nox -s make_release -- X.Y.Z where X.Y.Z is the version you're releasing and follow the printed instructions.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bittensor_sentinel-0.2.3.tar.gz.
File metadata
- Download URL: bittensor_sentinel-0.2.3.tar.gz
- Upload date:
- Size: 193.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c1fa7d6666d22865a616162c1a476104ccaafd4387d23ea9c608c4b3c005549
|
|
| MD5 |
9223a1279807c6558f5038079ab1b924
|
|
| BLAKE2b-256 |
a65da06791c5238d7d118a1b3757b46d8d9d078c68eb0b209b39985adb4e6762
|
Provenance
The following attestation bundles were made for bittensor_sentinel-0.2.3.tar.gz:
Publisher:
publish.yml on bittensor-church/sentinel-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bittensor_sentinel-0.2.3.tar.gz -
Subject digest:
2c1fa7d6666d22865a616162c1a476104ccaafd4387d23ea9c608c4b3c005549 - Sigstore transparency entry: 1357171772
- Sigstore integration time:
-
Permalink:
bittensor-church/sentinel-sdk@461670642a132db2d89a1657933ddc755652dc47 -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/bittensor-church
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@461670642a132db2d89a1657933ddc755652dc47 -
Trigger Event:
push
-
Statement type:
File details
Details for the file bittensor_sentinel-0.2.3-py3-none-any.whl.
File metadata
- Download URL: bittensor_sentinel-0.2.3-py3-none-any.whl
- Upload date:
- Size: 53.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4972a9a1250316f5f8384d3427cc52282fb5772c00280102c96a7976a107696
|
|
| MD5 |
3bab1c476b91c8218ff6dd48c55135dd
|
|
| BLAKE2b-256 |
ec2893f461f0c13a4bef715603d0abf8787764cf6914ad93734a23a6ff2fd436
|
Provenance
The following attestation bundles were made for bittensor_sentinel-0.2.3-py3-none-any.whl:
Publisher:
publish.yml on bittensor-church/sentinel-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bittensor_sentinel-0.2.3-py3-none-any.whl -
Subject digest:
f4972a9a1250316f5f8384d3427cc52282fb5772c00280102c96a7976a107696 - Sigstore transparency entry: 1357171773
- Sigstore integration time:
-
Permalink:
bittensor-church/sentinel-sdk@461670642a132db2d89a1657933ddc755652dc47 -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/bittensor-church
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@461670642a132db2d89a1657933ddc755652dc47 -
Trigger Event:
push
-
Statement type: