Get Data from ImFact network
Using the SDK, you can query various types of data from the ImFACT network. This includes not only blockchain metadata such as blocks and node information, but also on-chain state data β for example, account balances, issued NFT information, and other contract-related state.
Under the hood, this data is retrieved via the ImFACT digest API. However, developers do not need to interact with the digest API directly. The SDK provides dedicated query methods that internally handle the required API calls and response parsing.
Like most blockchain networks, fetching data does not incur any transaction fees.
These query operations are asynchronous and are typically executed via HTTP GET requests. As with any HTTP request, a call may either succeed or fail.
The ImFACT SDK standardizes the response format for both cases:
SuccessResponseErrorResponse
Last updated