/** * 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. */ /** * * @export * @interface SimulateSVMTransactionRequest */ export interface SimulateSVMTransactionRequest { /** * The Solana chainId to simulate the transaction on * @type {string} * @memberof SimulateSVMTransactionRequest */ chain: string; /** * List of Solana transactions to simulate * @type {Array} * @memberof SimulateSVMTransactionRequest */ transactions: Array; /** * Valid Solana wallet address, must be a 44-character string using base58 characters * @type {string} * @memberof SimulateSVMTransactionRequest */ accountAddress: string; /** * * @type {string} * @memberof SimulateSVMTransactionRequest */ domain?: string; /** * * @type {string} * @memberof SimulateSVMTransactionRequest */ method: string; } export declare function SimulateSVMTransactionRequestFromJSON(json: any): SimulateSVMTransactionRequest; export declare function SimulateSVMTransactionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SimulateSVMTransactionRequest; export declare function SimulateSVMTransactionRequestToJSON(value?: SimulateSVMTransactionRequest | null): any;