Skip to main content
type SecureIframeStatusMessage = {
  type: SecureIframeEventType["STATUS"];
  payload: {
     status: SecureIframeStatus;
     message?: string;
  };
};
The message sent from the secure iframe to the parent window to indicate the status of the private key retrieval.

Properties

PropertyType
typeSecureIframeEventType["STATUS"]
payload{ status: SecureIframeStatus; message?: string; }
payload.statusSecureIframeStatus
payload.message?string