wative 1.2.7 → 1.2.10
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/package.json +23 -23
- package/src/account.ts +0 -864
- package/src/assets.ts +0 -399
- package/src/chain.ts +0 -28
- package/src/config.ts +0 -2074
- package/src/daemon-watcher.js +0 -181
- package/src/home_page.ts +0 -36
- package/src/index.d.ts +0 -12
- package/src/index.ts +0 -53
- package/src/network.ts +0 -819
- package/src/ssh/client.ts +0 -389
- package/src/ssh/config_manager.ts +0 -304
- package/src/ssh/index.ts +0 -66
- package/src/ssh/service_manager.ts +0 -685
- package/src/ssh/types.ts +0 -50
- package/src/ssh/utils.ts +0 -89
- package/src/ssh/wative_server.ts +0 -534
- package/src/tools.ts +0 -923
- package/src/tx_gas_utils.ts +0 -119
- package/src/utils.ts +0 -916
- package/src/wallet-cli.ts +0 -39
- package/src/wative.ts +0 -633
- package/src/web3.ts +0 -415
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wative",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.10",
|
|
4
4
|
"description": "An agile keystore management toolkit",
|
|
5
5
|
"main": "lib/index.umd.js",
|
|
6
|
-
"types": "
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"test": "jest",
|
|
9
9
|
"compile": "tsc",
|
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
"author": "",
|
|
21
21
|
"license": "ISC",
|
|
22
22
|
"files": [
|
|
23
|
-
"src/",
|
|
24
23
|
"lib/",
|
|
25
24
|
"bin/"
|
|
26
25
|
],
|
|
@@ -32,16 +31,10 @@
|
|
|
32
31
|
"@coral-xyz/anchor": "0.30.1",
|
|
33
32
|
"@metamask/bip39": "4.0.0",
|
|
34
33
|
"@metaplex-foundation/js": "0.20.1",
|
|
35
|
-
"@rollup/plugin-commonjs": "21.0.1",
|
|
36
|
-
"@rollup/plugin-typescript": "12.1.2",
|
|
37
34
|
"@solana/web3.js": "1.91.8",
|
|
38
|
-
"@types/figlet": "1.5.8",
|
|
39
|
-
"@types/ini": "4.1.1",
|
|
40
|
-
"@types/inquirer": "9.0.7",
|
|
41
|
-
"@types/node-fetch": "2.6.11",
|
|
42
35
|
"bip39": "3.1.0",
|
|
43
36
|
"cli-progress": "3.12.0",
|
|
44
|
-
"commander": "
|
|
37
|
+
"commander": "9.5.0",
|
|
45
38
|
"crypto-js": "4.2.0",
|
|
46
39
|
"dotenv": "16.4.5",
|
|
47
40
|
"ethereumjs-wallet": "1.0.2",
|
|
@@ -55,25 +48,32 @@
|
|
|
55
48
|
"log4js": "6.9.1",
|
|
56
49
|
"micro-ed25519-hdkey": "0.1.2",
|
|
57
50
|
"node-fetch": "2.6.0",
|
|
58
|
-
"rollup": "2.79.1",
|
|
59
|
-
"rollup-plugin-terser": "7.0.2",
|
|
60
|
-
"rollup-plugin-typescript2": "0.31.2",
|
|
61
51
|
"rpc-websockets": "7.10.0",
|
|
62
52
|
"ssh2": "1.14.0",
|
|
63
53
|
"uuid": "9.0.0",
|
|
64
|
-
"wative-core": "1.
|
|
65
|
-
"web3": "1.7.3"
|
|
54
|
+
"wative-core": "1.2.2",
|
|
55
|
+
"web3": "1.7.3",
|
|
56
|
+
"colors": "1.0.3",
|
|
57
|
+
"@types/ssh2": "1.15.4"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@rollup/plugin-commonjs": "21.0.1",
|
|
61
|
+
"@rollup/plugin-typescript": "12.1.2",
|
|
62
|
+
"@rollup/plugin-json": "6.1.0",
|
|
63
|
+
"rollup": "2.79.1",
|
|
64
|
+
"rollup-plugin-terser": "7.0.2",
|
|
65
|
+
"rollup-plugin-typescript2": "0.31.2",
|
|
66
|
+
"rollup-plugin-copy": "3.5.0",
|
|
67
|
+
"ts-node": "10.9.2",
|
|
68
|
+
"@types/node": "24.2.0",
|
|
69
|
+
"@types/node-fetch": "2.6.11",
|
|
70
|
+
"@types/inquirer": "9.0.7",
|
|
71
|
+
"@types/ini": "4.1.1",
|
|
72
|
+
"@types/figlet": "1.5.8"
|
|
66
73
|
},
|
|
67
74
|
"directories": {
|
|
68
75
|
"lib": "lib",
|
|
69
76
|
"test": "test"
|
|
70
77
|
},
|
|
71
|
-
"keywords": []
|
|
72
|
-
"devDependencies": {
|
|
73
|
-
"@rollup/plugin-json": "6.1.0",
|
|
74
|
-
"@types/node": "24.2.0",
|
|
75
|
-
"@types/ssh2": "1.15.4",
|
|
76
|
-
"rollup-plugin-copy": "3.5.0",
|
|
77
|
-
"ts-node": "10.9.2"
|
|
78
|
-
}
|
|
78
|
+
"keywords": []
|
|
79
79
|
}
|