@xchainjs/xchain-litecoin
Version:
Custom Litecoin client and utilities used by XChainJS clients
17 lines (16 loc) • 402 B
TypeScript
import { FeeRate, Network } from '@xchainjs/xchain-client';
import { Address } from '@xchainjs/xchain-util';
export type NormalTxParams = {
addressTo: Address;
amount: number;
feeRate: FeeRate;
};
export type VaultTxParams = NormalTxParams & {
memo: string;
};
export type GetChangeParams = {
valueOut: number;
sochainUrl: string;
network: Network;
address: Address;
};