@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
30 lines (25 loc) • 693 B
text/typescript
import { RequestErrorType } from "viem/utils";
/**
* Parameters for the `index.isAccepted` method.
*
* @property id - The container's ID
* @property encoding - The encoding format for the container data. Only "hex" is supported.
*/
export type IsAcceptedParameters = {
id: string;
encoding: "hex";
};
/**
* Return type for the `index.isAccepted` method.
*
* @property isAccepted - Whether the container is in this index
*/
export type IsAcceptedReturnType = {
isAccepted: boolean;
};
export type IsAcceptedErrorType = RequestErrorType;
export type IsAcceptedMethod = {
Method: "index.isAccepted";
Parameters: IsAcceptedParameters;
ReturnType: IsAcceptedReturnType;
};