UNPKG

@tatumio/tatum-v1

Version:

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

16 lines (15 loc) 677 B
import { TransferTrxOffchain } from '../model/request'; /** * Send Tron transaction from Tatum Ledger account to the blockchain. This method broadcasts signed transaction to the blockchain. * This operation is irreversible. * @param testnet mainnet or testnet version * @param body content of the transaction to broadcast * @returns transaction id of the transaction in the blockchain or id of the withdrawal, if it was not cancelled automatically */ export declare const sendTronOffchainTransaction: (testnet: boolean, body: TransferTrxOffchain) => Promise<import("..").SignatureId | { id: string; txId: string; completed: boolean; } | { id: string; }>;