/** * 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. */ /** * Bitcoin PSBT transaction for signing * @export * @interface SignMessageBtcTransaction */ export interface SignMessageBtcTransaction { /** * PSBT (Partially Signed Bitcoin Transaction) in base64 or hex format * @type {string} * @memberof SignMessageBtcTransaction */ psbt: string; /** * Chain identifier (1=mainnet, 2=testnet, 3=signet) * @type {string} * @memberof SignMessageBtcTransaction */ chainId: string; /** * Bitcoin address of the signer (deprecated - use EAC accountAddress instead) * @type {string} * @memberof SignMessageBtcTransaction */ accountAddress?: string; } export declare function SignMessageBtcTransactionFromJSON(json: any): SignMessageBtcTransaction; export declare function SignMessageBtcTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SignMessageBtcTransaction; export declare function SignMessageBtcTransactionToJSON(value?: SignMessageBtcTransaction | null): any;