@openzeppelin/relayer-sdk
Version:
OpenZeppelin Relayer SDK
75 lines (74 loc) • 1.61 kB
TypeScript
/**
* 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';
import type { TransactionStatus } from './transaction-status';
/**
*
* @export
* @interface SolanaTransactionResponse
*/
export interface SolanaTransactionResponse {
/**
*
* @type {string}
* @memberof SolanaTransactionResponse
*/
'confirmed_at'?: string;
/**
*
* @type {string}
* @memberof SolanaTransactionResponse
*/
'created_at': string;
/**
*
* @type {string}
* @memberof SolanaTransactionResponse
*/
'id': string;
/**
*
* @type {Array<SolanaInstructionSpec>}
* @memberof SolanaTransactionResponse
*/
'instructions'?: Array<SolanaInstructionSpec>;
/**
*
* @type {string}
* @memberof SolanaTransactionResponse
*/
'sent_at'?: string;
/**
*
* @type {string}
* @memberof SolanaTransactionResponse
*/
'signature'?: string;
/**
*
* @type {TransactionStatus}
* @memberof SolanaTransactionResponse
*/
'status': TransactionStatus;
/**
*
* @type {string}
* @memberof SolanaTransactionResponse
*/
'status_reason'?: string;
/**
*
* @type {string}
* @memberof SolanaTransactionResponse
*/
'transaction': string;
}