@swapkit/toolboxes 4.16.2 → 4.17.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/dist/src/cardano/index.cjs +1 -1
- package/dist/src/cardano/index.js +1 -1
- package/dist/src/hypercore/index.cjs +1 -1
- package/dist/src/hypercore/index.js +1 -1
- package/dist/src/index.cjs +1 -1
- package/dist/src/index.js +1 -1
- package/dist/types/index.d.ts +3 -3
- package/dist/types/types.d.ts +1 -1
- package/package.json +4 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export type Toolboxes = {
|
|
|
30
30
|
[key in CosmosChain]: ReturnType<typeof getCosmosToolbox>;
|
|
31
31
|
} & {
|
|
32
32
|
[Chain.Aptos]: ReturnType<typeof getAptosToolbox>;
|
|
33
|
-
[Chain.
|
|
33
|
+
[Chain.Hype]: ReturnType<typeof getHyperCoreToolbox>;
|
|
34
34
|
[Chain.Radix]: ReturnType<typeof getRadixToolbox>;
|
|
35
35
|
[Chain.Near]: ReturnType<typeof getNearToolbox>;
|
|
36
36
|
[Chain.Ripple]: ReturnType<typeof getRippleToolbox>;
|
|
@@ -50,7 +50,7 @@ export type ToolboxParams = {
|
|
|
50
50
|
[key in CosmosChain]: Parameters<typeof getCosmosToolbox>[1];
|
|
51
51
|
} & {
|
|
52
52
|
[Chain.Aptos]: Parameters<typeof getAptosToolbox>[0];
|
|
53
|
-
[Chain.
|
|
53
|
+
[Chain.Hype]: Parameters<typeof getHyperCoreToolbox>[0];
|
|
54
54
|
[Chain.Radix]: Parameters<typeof getRadixToolbox>[0];
|
|
55
55
|
[Chain.Near]: Parameters<typeof getNearToolbox>[0];
|
|
56
56
|
[Chain.Ripple]: Parameters<typeof getRippleToolbox>[0];
|
|
@@ -70,7 +70,7 @@ type CreateTransactionParams = {
|
|
|
70
70
|
[key in CosmosChain]: GenericCreateTransactionParams;
|
|
71
71
|
} & {
|
|
72
72
|
[Chain.Aptos]: AptosCreateTransactionParams;
|
|
73
|
-
[Chain.
|
|
73
|
+
[Chain.Hype]: GenericCreateTransactionParams;
|
|
74
74
|
[Chain.Radix]: GenericCreateTransactionParams;
|
|
75
75
|
[Chain.Ripple]: GenericCreateTransactionParams;
|
|
76
76
|
[Chain.Near]: GenericCreateTransactionParams;
|
package/dist/types/types.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ import type { TronWallet } from "./tron";
|
|
|
17
17
|
import type { UTXOToolboxes } from "./utxo";
|
|
18
18
|
type OtherWallets = {
|
|
19
19
|
[Chain.Aptos]: AptosWallet;
|
|
20
|
-
[Chain.
|
|
20
|
+
[Chain.Hype]: HyperCoreWallet;
|
|
21
21
|
[Chain.Radix]: RadixWallet;
|
|
22
22
|
[Chain.Ripple]: RippleWallet;
|
|
23
23
|
[Chain.Solana]: SolanaWallet;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"dependencies": { "@swapkit/helpers": "4.
|
|
2
|
+
"dependencies": { "@swapkit/helpers": "4.14.0", "@swapkit/utxo-signer": "2.2.0" },
|
|
3
3
|
"description": "SwapKit - Toolboxes",
|
|
4
4
|
"devDependencies": {
|
|
5
5
|
"@aptos-labs/ts-sdk": "1.34.0",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"@stricahq/bip32ed25519": "1.1.2",
|
|
38
38
|
"@stricahq/cbors": "1.0.4",
|
|
39
39
|
"@stricahq/typhonjs": "3.1.0",
|
|
40
|
+
"@ton/core": "0.63.1",
|
|
40
41
|
"@ton/crypto": "3.3.0",
|
|
41
42
|
"@ton/ton": "16.2.4",
|
|
42
43
|
"@types/bn.js": "5.2.0",
|
|
@@ -172,6 +173,7 @@
|
|
|
172
173
|
"@stricahq/bip32ed25519": "1.1.2",
|
|
173
174
|
"@stricahq/cbors": "1.0.4",
|
|
174
175
|
"@stricahq/typhonjs": "3.1.0",
|
|
176
|
+
"@ton/core": "0.63.1",
|
|
175
177
|
"@ton/crypto": "3.3.0",
|
|
176
178
|
"@ton/ton": "16.2.4",
|
|
177
179
|
"bignumber.js": "9.3.1",
|
|
@@ -194,5 +196,5 @@
|
|
|
194
196
|
"type-check:go": "tsgo"
|
|
195
197
|
},
|
|
196
198
|
"type": "module",
|
|
197
|
-
"version": "4.
|
|
199
|
+
"version": "4.17.1"
|
|
198
200
|
}
|