GetAgGenesisCertApi

type GetAgGenesisCertApi = object;

Methods

getAgGenesisCert()

getAgGenesisCert():
  | Readonly<{
  block: Readonly<{
     blockId: readonly number[];
     slot: Slot;
  }>;
  signature: Readonly<{
     bitmap: readonly number[];
     signature: readonly number[];
  }>;
}>
  | null;

Returns the Alpenglow genesis certificate, or null if the node does not have one.

Returns

| Readonly<{ block: Readonly<{ blockId: readonly number[]; slot: Slot; }>; signature: Readonly<{ bitmap: readonly number[]; signature: readonly number[]; }>; }> | null

The certificate over the block at which the Alpenglow consensus protocol was activated.

See

https://solana.com/docs/rpc/http/getaggenesiscert

On this page