Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import { EncryptionHolderCallData } from './encryption-holder-call-data';
/**
* Interface for call data that contains encrypted payload information.
* Extends EncryptionHolderCallData to include the encrypted data property.
*/
export interface EncryptedCallData extends EncryptionHolderCallData {
/**
* Base64-encoded encrypted data payload.
* Contains information that has been encrypted for secure transmission.
*/
e: string;
}
|