@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
16 lines (15 loc) • 662 B
TypeScript
import { TransferBtcBasedBlockchain } from './';
export declare class TransferBtcLtcBlockchain extends TransferBtcBasedBlockchain {
/**
* The fee to be paid for the transaction (in BCH);
* if you are using this parameter, you have to also use the <code>changeAddress</code> parameter
* because these two parameters only work together.
*/
fee?: string;
/**
* The blockchain address to send any extra assets remaning after covering the fee;
* if you are using this parameter, you have to also use the <code>fee</code> parameter
* because these two parameters only work together.
*/
changeAddress?: string;
}