@brynjarrr/xchain-doge
Version:
Custom Doge client and utilities used by XChain clients
14 lines (13 loc) • 406 B
TypeScript
import { Address, FeeRate, Network, TxParams } from '@xchainjs/xchain-client';
import { UTXO } from './common';
export declare type LedgerTxInfo = {
utxos: UTXO[];
newTxHex: string;
};
export declare type LedgerTxInfoParams = Pick<TxParams, 'amount' | 'recipient'> & {
feeRate: FeeRate;
sender: Address;
network: Network;
sochainUrl: string;
nodeApiKey: string;
};