@xchainjs/xchain-dash 0.3.6 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/client.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /// <reference types="node" />
2
- import { AssetInfo, Balance, FeeRate, Tx, TxHistoryParams, TxParams, TxsPage } from '@xchainjs/xchain-client';
2
+ import { AssetInfo, FeeRate, TxHistoryParams } from '@xchainjs/xchain-client';
3
3
  import { Address } from '@xchainjs/xchain-util';
4
- import { Client as UTXOClient, UTXO, UtxoClientParams } from '@xchainjs/xchain-utxo';
4
+ import { Balance, Client as UTXOClient, Tx, TxParams, TxsPage, UTXO, UtxoClientParams } from '@xchainjs/xchain-utxo';
5
5
  import { DashPreparedTx, NodeAuth, NodeUrls } from './types';
6
6
  /**
7
7
  * Default parameters for the DASH client.
@@ -18,7 +18,7 @@ declare abstract class Client extends UTXOClient {
18
18
  protected readonly nodeAuth?: NodeAuth;
19
19
  constructor(params?: import("@xchainjs/xchain-client").XChainClientParams & {
20
20
  explorerProviders: import("@xchainjs/xchain-client").ExplorerProviders;
21
- dataProviders: import("@xchainjs/xchain-utxo-providers/lib").UtxoOnlineDataProviders[];
21
+ dataProviders: import("@xchainjs/xchain-utxo/lib/types/types").UtxoOnlineDataProviders[];
22
22
  } & {
23
23
  nodeUrls: NodeUrls;
24
24
  nodeAuth?: NodeAuth | undefined;
@@ -1,5 +1,6 @@
1
- import { FeeRate, TxHash, TxParams } from '@xchainjs/xchain-client';
1
+ import { FeeRate, TxHash } from '@xchainjs/xchain-client';
2
2
  import { Address } from '@xchainjs/xchain-util';
3
+ import { TxParams } from '@xchainjs/xchain-utxo';
3
4
  import * as Dash from 'bitcoinjs-lib';
4
5
  import { Client } from './client';
5
6
  export declare class ClientKeystore extends Client {
@@ -1,7 +1,7 @@
1
1
  import AppBtc from '@ledgerhq/hw-app-btc';
2
- import { FeeRate, TxHash, TxParams } from '@xchainjs/xchain-client';
2
+ import { FeeRate, TxHash } from '@xchainjs/xchain-client';
3
3
  import { Address } from '@xchainjs/xchain-util';
4
- import { UtxoClientParams } from '@xchainjs/xchain-utxo';
4
+ import { TxParams, UtxoClientParams } from '@xchainjs/xchain-utxo';
5
5
  import { Client } from './client';
6
6
  import { NodeAuth, NodeUrls } from './types';
7
7
  /**