@xchainjs/xchain-thorchain 1.0.6 → 1.0.8
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 +50 -0
- package/lib/index.esm.js +56977 -805
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +56985 -812
- package/lib/index.js.map +1 -1
- package/lib/utils.d.ts +1 -1
- package/package.json +11 -8
package/lib/utils.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { Address, Asset } from '@xchainjs/xchain-util';
|
|
|
6
6
|
/**
|
|
7
7
|
* Function to retrieve default client URLs based on network configuration.
|
|
8
8
|
*/
|
|
9
|
-
export declare const getDefaultClientUrls: () => Record<Network, string>;
|
|
9
|
+
export declare const getDefaultClientUrls: () => Record<Network, string[]>;
|
|
10
10
|
/**
|
|
11
11
|
* Function to retrieve default root derivation paths based on network configuration.
|
|
12
12
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xchainjs/xchain-thorchain",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Custom Thorchain client and utilities used by XChainJS clients",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"THORChain",
|
|
@@ -34,18 +34,21 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@cosmjs/amino": "0.31.1",
|
|
37
|
-
"@cosmjs/encoding": "0.31.1",
|
|
38
37
|
"@cosmjs/crypto": "0.31.1",
|
|
38
|
+
"@cosmjs/encoding": "0.31.1",
|
|
39
39
|
"@cosmjs/proto-signing": "0.31.1",
|
|
40
|
-
"
|
|
41
|
-
"@xchainjs/xchain-
|
|
42
|
-
"@xchainjs/xchain-
|
|
43
|
-
"@xchainjs/xchain-util": "*",
|
|
40
|
+
"@xchainjs/xchain-client": "workspace:*",
|
|
41
|
+
"@xchainjs/xchain-cosmos-sdk": "workspace:*",
|
|
42
|
+
"@xchainjs/xchain-util": "workspace:*",
|
|
44
43
|
"axios": "1.3.6",
|
|
44
|
+
"bech32": "^1.1.3",
|
|
45
45
|
"bignumber.js": "9.0.0",
|
|
46
|
-
"
|
|
46
|
+
"bip32": "^2.0.6",
|
|
47
|
+
"cosmjs-types": "0.8.0",
|
|
48
|
+
"protobufjs": "6.11.4",
|
|
49
|
+
"secp256k1": "^5.0.0"
|
|
47
50
|
},
|
|
48
51
|
"publishConfig": {
|
|
49
52
|
"access": "public"
|
|
50
53
|
}
|
|
51
|
-
}
|
|
54
|
+
}
|