-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for smart contracts and big maps #21
Comments
Yes this would be great to have ASAP! |
Thank you for your interest! We're already working on contract storage and lazy storage (aka |
Hey! We have implemented bigmaps indexing. For now, it is available on staging and will be in prod in a few weeks, after more tests. The API is more or less stable and likely won't be changed, so you can already play with it. There are two ways to access bigmaps:
And there are two endpoints to access keys:
As far as I understand, you need historical keys, so the second endpoint is your choice. In all other cases I strongly recommend avoid accessing historical keys, because this endpoint is much slower than current keys due to data aggregation. You can also use filters, pagination and selection, for example: /historical_keys/1400000?active=true&value.balance.ne=0&select=key,value Feel free to leave any feedback or ask any questions. |
Done in v1.5 |
* [data] create a DalAttestationStatus table In order to keep track of DAL attestations evolution * [cache] create a cache for DalCommitmentStatus To be able to retrieve them faster * [dal-attestation] index DAL attestation status Each time an endorsement contains dal-attestation, index a DalAttestationStatus for each slot associated to a DAL commitment * [api] add an endpoint to count DAL attestations Authorize to filter by: - commitment - publishLevel - slot-index - attester - attested * [api] add an endpoint to get DAL attestation information Authorize to select fields: - commitment - publishLevel - slotIndex - attester - attested Authorize to filter by: - commitment - publishLevel - slotIndex - attester - attested Authorize to sort by: - publishLevel - slotIndex
I am working on Tezos Reward Distributor and we are using tzkt as a possible backend api for fetching blockchain data. We are now working on adding support for delegations in the form of dexter contracts and we would like to extend the current tzkt provider implementation with the needed endpoints to extract data from big maps at any given block, i.e. given a block level and a big map id, I would like to get the list of values stored in this big map at that specific block.
That would be great if this feature can be added to tzkt for us to enable support for the dexter delegations using tzkt.
The text was updated successfully, but these errors were encountered: