TypeAlias.CertificationKeyHistoryItem
type CertificationKeyHistoryItem = {
activatedAt: string;
createdAt: string;
deactivatedAt?: string | null;
id: string;
name?: string | null;
publicKey: string;
registeredNetworks: ("StarknetDevnet" | "StarknetSepolia" | "StarknetMainnet")[];
status: "active" | "pending" | "rotated" | "revoked";
};
Historical certification key item. Includes status, activation dates, and registered networks.
Type Declaration
| Name | Type |
|---|---|
activatedAt | string |
createdAt | string |
deactivatedAt? | string |
id | string |
name? | string |
publicKey | string |
registeredNetworks | ("StarknetDevnet" |
status | "active" |