Skip to content

Instantly share code, notes, and snippets.

@m-kus
Created July 11, 2019 08:34
Show Gist options
  • Save m-kus/1ace8f2c4ca90cdf29ecfc22fa200bb5 to your computer and use it in GitHub Desktop.
Save m-kus/1ace8f2c4ca90cdf29ecfc22fa200bb5 to your computer and use it in GitHub Desktop.
Query delegate registrations
from conseil import conseil
Operation = conseil.tezos.alphanet.operations
Operation.query(Operation.timestamp) \
.filter(Operation.kind == Operation.kind.delegation,
Operation.source.startswith('tz')) \
.order_by(Operation.timestamp) \
.all()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment