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