UNPKG

@openzeppelin/relayer-sdk

Version:
92 lines (91 loc) 1.87 kB
/** * 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 { TransactionStatus } from './transaction-status'; /** * * @export * @interface StellarTransactionResponse */ export interface StellarTransactionResponse { /** * * @type {string} * @memberof StellarTransactionResponse */ 'confirmed_at'?: string; /** * * @type {string} * @memberof StellarTransactionResponse */ 'created_at': string; /** * * @type {number} * @memberof StellarTransactionResponse */ 'fee': number; /** * * @type {string} * @memberof StellarTransactionResponse */ 'hash'?: string; /** * * @type {string} * @memberof StellarTransactionResponse */ 'id': string; /** * * @type {string} * @memberof StellarTransactionResponse */ 'relayer_id': string; /** * * @type {string} * @memberof StellarTransactionResponse */ 'sent_at'?: string; /** * * @type {number} * @memberof StellarTransactionResponse */ 'sequence_number': number; /** * * @type {string} * @memberof StellarTransactionResponse */ 'source_account': string; /** * * @type {TransactionStatus} * @memberof StellarTransactionResponse */ 'status': TransactionStatus; /** * * @type {string} * @memberof StellarTransactionResponse */ 'status_reason'?: string | null; /** * * @type {string} * @memberof StellarTransactionResponse */ 'transaction_result_xdr'?: string; }