UNPKG

@xchainjs/xchain-doge

Version:

Custom Doge client and utilities used by XChain clients

17 lines (16 loc) 402 B
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; };