chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
13 lines (12 loc) • 815 B
TypeScript
import { Address } from '../../../../Wallet/entities/Address';
import { UtxoWallet } from '../UtxoWallet/UtxoWallet';
import { Transports } from '../../Transports';
import { NetworkParams } from '../UtxoWallet/NetworkParams';
import { UtxoTransaction } from '../UtxoWallet/UtxoTransaction';
import { CurrencyInfo } from '../../../CurrencyInfo';
import { CurrencyAmount } from '../../../CurrencyUtils';
import { UtxoCurrencyUtils } from '../../../CurrencyUtils/abstract/UtxoCurrencyUtils/UtxoCurrencyUtils';
export declare abstract class LegacyUtxoWallet<CI extends CurrencyInfo> extends UtxoWallet<CI> {
protected constructor(utils: UtxoCurrencyUtils<CI>, transports: Transports, networkParams: NetworkParams);
createTransfer(toAddress: Address, amount: CurrencyAmount<CI>): Promise<UtxoTransaction<CI>>;
}