@openzeppelin/relayer-sdk
Version:
OpenZeppelin Relayer SDK
24 lines (23 loc) • 1.08 kB
TypeScript
/**
* OpenZeppelin Relayer API
* OpenZeppelin Relayer API
*
* 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.
*/
import type { FeeEstimateResult } from './fee-estimate-result';
import type { GetFeaturesEnabledResult } from './get-features-enabled-result';
import type { GetSupportedTokensResult } from './get-supported-tokens-result';
import type { PrepareTransactionResult } from './prepare-transaction-result';
import type { SignAndSendTransactionResult } from './sign-and-send-transaction-result';
import type { SignTransactionResult } from './sign-transaction-result';
import type { TransferTransactionResult } from './transfer-transaction-result';
/**
* @type SolanaRpcResult
* @export
*/
export type SolanaRpcResult = FeeEstimateResult | GetFeaturesEnabledResult | GetSupportedTokensResult | PrepareTransactionResult | SignAndSendTransactionResult | SignTransactionResult | TransferTransactionResult;