@solana/rpc-api
Version:
Defines all default Solana RPC methods as types
12 lines • 398 B
TypeScript
import type { Slot } from '@solana/rpc-types';
type GetMaxRetransmitSlotApiResponse = Slot;
export type GetMaxRetransmitSlotApi = {
/**
* Get the max slot seen from retransmit stage.
*
* @see https://solana.com/docs/rpc/http/getmaxretransmitslot
*/
getMaxRetransmitSlot(): GetMaxRetransmitSlotApiResponse;
};
export {};
//# sourceMappingURL=getMaxRetransmitSlot.d.ts.map