/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Response body for `GET /waas/aleo/prover/{network}/pubkey`. Mirrors * Provable's `/prove//pubkey` shape — an ephemeral X25519 * public key (base58) plus the matching `key_id` the iframe pairs with * its ciphertext on the subsequent `/prove/encrypted` call. * @export * @interface AleoProverPubkeyResponse */ export interface AleoProverPubkeyResponse { /** * Opaque identifier the prover uses to look up the matching private key. * @type {string} * @memberof AleoProverPubkeyResponse */ keyId: string; /** * X25519 public key (base58) the iframe seals its proving request to. * @type {string} * @memberof AleoProverPubkeyResponse */ publicKey: string; } export declare function AleoProverPubkeyResponseFromJSON(json: any): AleoProverPubkeyResponse; export declare function AleoProverPubkeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AleoProverPubkeyResponse; export declare function AleoProverPubkeyResponseToJSON(value?: AleoProverPubkeyResponse | null): any;