UNPKG

@openzeppelin/relayer-sdk

Version:
38 lines (37 loc) 999 B
/** * OpenZeppelin Relayer API * OpenZeppelin Relayer API * * The version of the OpenAPI document: 1.3.0 * * * 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 { SolanaInstructionSpec } from './solana-instruction-spec'; /** * * @export * @interface SolanaTransactionRequest */ export interface SolanaTransactionRequest { /** * Instructions to build transaction from (mutually exclusive with transaction) * @type {Array<SolanaInstructionSpec>} * @memberof SolanaTransactionRequest */ 'instructions'?: Array<SolanaInstructionSpec> | null; /** * * @type {string} * @memberof SolanaTransactionRequest */ 'transaction'?: string; /** * Optional RFC3339 timestamp when transaction should expire * @type {string} * @memberof SolanaTransactionRequest */ 'valid_until'?: string | null; }