@solana/rpc-api
Version:
Defines all default Solana RPC methods as types
12 lines • 406 B
TypeScript
import type { Slot } from '@solana/rpc-types';
type GetMaxShredInsertSlotApiResponse = Slot;
export type GetMaxShredInsertSlotApi = {
/**
* Get the max slot seen from after shred insert.
*
* @see https://solana.com/docs/rpc/http/getmaxshredinsertslot
*/
getMaxShredInsertSlot(): GetMaxShredInsertSlotApiResponse;
};
export {};
//# sourceMappingURL=getMaxShredInsertSlot.d.ts.map