/** * keepkey-sdk-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { TypesNumericU32 } from './TypesNumericU32'; /** * * @export * @interface GetPublicKeyRequest */ export interface GetPublicKeyRequest { /** * * @type {string} * @memberof GetPublicKeyRequest */ script_type?: GetPublicKeyRequestScriptTypeEnum; /** * * @type {string} * @memberof GetPublicKeyRequest */ coin_name?: string; /** * * @type {boolean} * @memberof GetPublicKeyRequest */ show_display?: boolean; /** * * @type {string} * @memberof GetPublicKeyRequest */ ecdsa_curve_name?: string; /** * a BIP-32 path, expressed as a list of node indexes * @type {Array} * @memberof GetPublicKeyRequest */ address_n: Array; } /** * @export */ export declare const GetPublicKeyRequestScriptTypeEnum: { readonly p2pkh: "p2pkh"; readonly p2wpkh: "p2wpkh"; readonly p2sh_p2wpkh: "p2sh-p2wpkh"; }; export type GetPublicKeyRequestScriptTypeEnum = typeof GetPublicKeyRequestScriptTypeEnum[keyof typeof GetPublicKeyRequestScriptTypeEnum]; /** * Check if a given object implements the GetPublicKeyRequest interface. */ export declare function instanceOfGetPublicKeyRequest(value: object): boolean; export declare function GetPublicKeyRequestFromJSON(json: any): GetPublicKeyRequest; export declare function GetPublicKeyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPublicKeyRequest; export declare function GetPublicKeyRequestToJSON(value?: GetPublicKeyRequest | null): any;