Skip to main content
type SecureIframeGetPrivateKeyMessage = {
  type: SecureIframeKeyExportEventType["GET_PRIVATE_KEY"];
  payload: SecureIframeContext & {
     address: string;
     type: SecureIframeChainType;
  };
};
The message sent to the secure iframe to trigger fetching the private key.

Properties

PropertyType
typeSecureIframeKeyExportEventType["GET_PRIVATE_KEY"]
payloadSecureIframeContext & { address: string; type: SecureIframeChainType; }