@avalanche-sdk/client
Version:
A TypeScript SDK for interacting with the Avalanche network through JSON-RPC APIs. This SDK provides a comprehensive set of tools to interact with all Avalanche chains (P-Chain, X-Chain, C-Chain) and various APIs, including wallet functionality for transa
36 lines (31 loc) • 1.04 kB
text/typescript
import { RequestErrorType } from "viem/utils";
/**
* Parameters for the `index.getLastAccepted` method.
*
* @property encoding - The encoding format for the container data. Only "hex" is supported.
*/
export type GetLastAcceptedParameters = {
encoding: "hex";
};
/**
* Return type for the `index.getLastAccepted` method.
*
* @property id - The container's ID
* @property bytes - The byte representation of the container
* @property timestamp - The time at which this node accepted the container
* @property encoding - The encoding format used for the container data. Only "hex" is supported.
* @property index - How many containers were accepted in this index before this one
*/
export type GetLastAcceptedReturnType = {
id: string;
bytes: string;
timestamp: string;
encoding: "hex";
index: string;
};
export type GetLastAcceptedErrorType = RequestErrorType;
export type GetLastAcceptedMethod = {
Method: "index.getLastAccepted";
Parameters: GetLastAcceptedParameters;
ReturnType: GetLastAcceptedReturnType;
};