@xchainjs/xchain-utxo 2.0.3 → 2.0.5
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 +1 -0
- package/lib/index.d.ts +2 -1
- package/lib/types/index.d.ts +1 -1
- package/lib/types/types.d.ts +1 -1
- package/package.json +4 -4
package/lib/client.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
+
/// <reference types="node" />
|
|
2
3
|
import { BaseXChainClient, ExplorerProviders, FeeEstimateOptions, FeeRate, FeeRates, Fees, FeesWithRates, Protocol, TxHash, TxHistoryParams } from '@xchainjs/xchain-client';
|
|
3
4
|
import { Address, Asset, Chain } from '@xchainjs/xchain-util';
|
|
4
5
|
import { UtxoOnlineDataProviders } from '@xchainjs/xchain-utxo-providers';
|
package/lib/index.d.ts
CHANGED
|
@@ -4,4 +4,5 @@ import { Balance, PreparedTx, Tx, TxFrom, TxParams, TxTo, TxsPage, UTXO, UtxoCli
|
|
|
4
4
|
/**
|
|
5
5
|
* Exported symbols from the `Client`, `UTXO`, `UtxoClientParams`, `Witness`, and `PreparedTx` modules.
|
|
6
6
|
*/
|
|
7
|
-
export { Client,
|
|
7
|
+
export { Client, toBitcoinJS };
|
|
8
|
+
export type { UTXO, UtxoClientParams, Witness, PreparedTx, Balance, Tx, TxsPage, TxParams, TxTo, TxFrom };
|
package/lib/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Balance, PreparedTx, Tx, TxFrom, TxParams, TxTo, TxsPage, UTXO, UtxoClientParams, Witness } from './types';
|
|
2
|
-
export { UTXO, UtxoClientParams, Witness, PreparedTx, Balance, Tx, TxsPage, TxParams, TxFrom, TxTo };
|
|
2
|
+
export type { UTXO, UtxoClientParams, Witness, PreparedTx, Balance, Tx, TxsPage, TxParams, TxFrom, TxTo };
|
package/lib/types/types.d.ts
CHANGED
|
@@ -13,4 +13,4 @@ export type TxParams = BaseTxParams & {
|
|
|
13
13
|
asset?: Asset;
|
|
14
14
|
};
|
|
15
15
|
export type UtxoOnlineDataProviders = Record<Network, UtxoOnlineDataProvider | undefined>;
|
|
16
|
-
export { UTXO, Witness, Balance, Tx, TxsPage, TxFrom, TxTo };
|
|
16
|
+
export type { UTXO, Witness, Balance, Tx, TxsPage, TxFrom, TxTo };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xchainjs/xchain-utxo",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "Genereic UTXO client for XChainJS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"XChain",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"directory": "release/package"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@xchainjs/xchain-client": "2.0.
|
|
39
|
-
"@xchainjs/xchain-util": "2.0.
|
|
40
|
-
"@xchainjs/xchain-utxo-providers": "2.0.
|
|
38
|
+
"@xchainjs/xchain-client": "2.0.5",
|
|
39
|
+
"@xchainjs/xchain-util": "2.0.3",
|
|
40
|
+
"@xchainjs/xchain-utxo-providers": "2.0.5"
|
|
41
41
|
}
|
|
42
42
|
}
|