Fetch data from chain
Last updated
Last updated
Once we created a new endless instance, we get access to all the sdk functionality. We now can query the chain for data.
The SDK provides built in queries to easily query the chain with most used or popular queries. The SDK resolves those queries to Endless or as needed and ease the burden on the developer to know and understand what service they need to query.
Some query responses do not provide the full response type as the SDK can't infer the actual type. For that we might want to provide a generic type for the response type, so we can access the response properties that are not included in the API type.
For example, for the getAccountResource
query we can define the resource
to query but the SDK can't infer the response type, and we can't have access to the response properties.
For that we support generic response types for different queries.
options
input argumentWe can provide queries with an options
input as query parameters. For those queries that support this option, an option
input param is available
Sometimes we use Indexer service to fetch data, this is because we can not get complex data direct from fullnode or some queries are not supported with the fullnode API. Since Indexer indexes the chain, it might take it some time to catch up with the latest ledger version, and we can end up not getting the real time data.
For that, the SDK supports an optional input argument minimumLedgerVersion
. We can pass a ledger version to sync up to, before querying. If no version provided, the SDK will not wait for Indexer to sync up.
To get the latest ledger version we can
Query for the ledger info
If we just committed a transaction with the SDK, we can use waitForTransaction
method, that would return us a CommittedTransactionResponse
that holds the latest ledger version
The Endless class holds different namespaces related to the query operation we seek to do. For example, all account
related queries are under the endless.account
namespace. Once we initiate the Endless
class, all namespaces will be available for as with autocomplete along with all the possible API functions.
Thought we don't need to specify the namespace when making a query, it can be beneficial while developing.