UNPKG

@tatumio/tatum-v1

Version:

Tatum API client allows browsers and Node.js clients to interact with Tatum API.

36 lines (35 loc) 1.78 kB
import { TransactionHash } from '../model'; /** * For more details, see <a href="https://apidoc.tatum.io/#operation/XlmGetAccountInfo" target="_blank">Tatum API documentation</a> */ export declare const xlmGetAccountInfo: (account: string) => Promise<{ sequence: string; }>; /** * For more details, see <a href="https://apidoc.tatum.io/#operation/XlmBroadcast" target="_blank">Tatum API documentation</a> */ export declare const xlmBroadcast: (txData: string, signatureId?: string | undefined) => Promise<TransactionHash>; /** * For more details, see <a href="https://apidoc.tatum.io/#operation/XlmGetLastClosedLedger" target="_blank">Tatum API documentation</a> */ export declare const xlmGetCurrentLedger: () => Promise<unknown>; /** * For more details, see <a href="https://apidoc.tatum.io/#operation/XlmGetFee" target="_blank">Tatum API documentation</a> */ export declare const xlmGetFee: () => Promise<unknown>; /** * For more details, see <a href="https://apidoc.tatum.io/#operation/XlmGetLedger" target="_blank">Tatum API documentation</a> */ export declare const xlmGetLedger: (i: number) => Promise<unknown>; /** * For more details, see <a href="https://apidoc.tatum.io/#operation/XlmGetLedgerTx" target="_blank">Tatum API documentation</a> */ export declare const xlmGetLedgerTx: (i: number) => Promise<unknown>; /** * For more details, see <a href="https://apidoc.tatum.io/#operation/XlmGetTransaction" target="_blank">Tatum API documentation</a> */ export declare const xlmGetTransaction: (hash: string) => Promise<unknown>; /** * For more details, see <a href="https://apidoc.tatum.io/#operation/XlmGetAccountTx" target="_blank">Tatum API documentation</a> */ export declare const xlmGetAccountTransactions: (address: string) => Promise<unknown>;