TypeAlias.CertificationKeyHistoryItem
type CertificationKeyHistoryItem = {
activatedAt: string;
createdAt: string;
deactivatedAt?: string | null;
id: string;
name?: string | null;
publicKey: string;
registeredNetworks: (
| "EthereumAnvil"
| "BaseSepolia"
| "BaseMainnet"
| "XdcApothem"
| "XdcMainnet")[];
status: "active" | "pending" | "revoked" | "rotated";
};
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 | ( |
status | "active" |