jaelis-node 1.5.0 → 1.8.0
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/README.md +64 -0
- package/bin/jaelis-node.js +3 -3
- package/config/default.json +1 -3
- package/config/testnet.json +1 -3
- package/lib/JAELIS-VM/lib/unified/cross-chain-deploy.js +1678 -0
- package/lib/JAELIS-VM/lib/unified/index.js +79 -1
- package/lib/index.js +779 -37
- package/lib/settlement-server.js +999 -0
- package/package.json +12 -11
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jaelis-node",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Official JAELIS Blockchain Node - Universal VM (6 languages), LevelDB state persistence, native jaelis_* RPC, multi-ecosystem compatibility (eth/solana/move/ton/btc/wasm/starknet), Cross-Chain Settlement (30+ chains!)",
|
|
3
|
+
"version": "1.8.0",
|
|
4
|
+
"description": "Official JAELIS Blockchain Node - Universal VM (6 languages), LevelDB state persistence, native jaelis_* RPC, multi-ecosystem compatibility (eth/solana/move/ton/btc/wasm/starknet), Cross-Chain Settlement (30+ chains!), AI-native MCP integration",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"jaelis-node": "./bin/jaelis-node.js"
|
|
@@ -60,17 +60,18 @@
|
|
|
60
60
|
"node": ">=18.0.0"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
+
"@chainsafe/libp2p-noise": "^15.1.2",
|
|
64
|
+
"@chainsafe/libp2p-yamux": "^6.0.2",
|
|
65
|
+
"@libp2p/bootstrap": "^10.1.5",
|
|
66
|
+
"@libp2p/identify": "^1.0.21",
|
|
67
|
+
"@libp2p/tcp": "^9.1.6",
|
|
68
|
+
"@multiformats/multiaddr": "^13.0.1",
|
|
69
|
+
"chalk": "^4.1.2",
|
|
70
|
+
"commander": "^11.1.0",
|
|
71
|
+
"cors": "^2.8.5",
|
|
72
|
+
"express": "^4.18.2",
|
|
63
73
|
"level": "^8.0.0",
|
|
64
74
|
"libp2p": "^1.2.0",
|
|
65
|
-
"@libp2p/tcp": "^9.0.0",
|
|
66
|
-
"@libp2p/bootstrap": "^10.0.0",
|
|
67
|
-
"@libp2p/identify": "^1.0.0",
|
|
68
|
-
"@chainsafe/libp2p-noise": "^15.0.0",
|
|
69
|
-
"@chainsafe/libp2p-yamux": "^6.0.0",
|
|
70
|
-
"express": "^4.18.2",
|
|
71
|
-
"cors": "^2.8.5",
|
|
72
|
-
"commander": "^11.1.0",
|
|
73
|
-
"chalk": "^4.1.2",
|
|
74
75
|
"ora": "^5.4.1"
|
|
75
76
|
},
|
|
76
77
|
"files": [
|