@solana/rpc-api
Version:
Defines all default Solana RPC methods as types
30 lines • 1.29 kB
TypeScript
import type { Address } from '@solana/addresses';
import type { Commitment, Slot } from '@solana/rpc-types';
type GetSlotLeaderApiResponse = Address;
export type GetSlotLeaderApi = {
/**
* Returns the current slot leader.
*
* @returns The address of the validator that has been granted the opportunity to create the
* block for the current slot.
* @see https://solana.com/docs/rpc/http/getslotleader
*/
getSlotLeader(config?: Readonly<{
/**
* Fetch the leader as of the highest slot that has reached this level of commitment.
*
* @defaultValue Whichever default is applied by the underlying {@link RpcApi} in use.
* For example, when using an API created by a `createSolanaRpc*()` helper, the default
* commitment is `"confirmed"` unless configured otherwise. Unmitigated by an API layer
* on the client, the default commitment applied by the server is `"finalized"`.
*/
commitment?: Commitment;
/**
* Prevents accessing stale data by enforcing that the RPC node has processed
* transactions up to this slot
*/
minContextSlot?: Slot;
}>): GetSlotLeaderApiResponse;
};
export {};
//# sourceMappingURL=getSlotLeader.d.ts.map