/** * 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. */ /** * Solana serialized transactions * @export * @interface SignMessageSvmTransaction */ export interface SignMessageSvmTransaction { /** * Chain identifier * @type {string} * @memberof SignMessageSvmTransaction */ chainId: string; /** * Method identifier * @type {string} * @memberof SignMessageSvmTransaction */ method: string; /** * Array of serialized transaction strings * @type {Array} * @memberof SignMessageSvmTransaction */ serializedTransactions: Array; } export declare function SignMessageSvmTransactionFromJSON(json: any): SignMessageSvmTransaction; export declare function SignMessageSvmTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SignMessageSvmTransaction; export declare function SignMessageSvmTransactionToJSON(value?: SignMessageSvmTransaction | null): any;