web3-tools-mcp 1.2.3 → 1.3.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 +11 -5
- package/dist/client.d.ts +483 -411
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +107 -14
- package/dist/client.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/tools/advanced.d.ts +12 -12
- package/dist/tools/balance.d.ts +6 -6
- package/dist/tools/contract-info.d.ts +12 -12
- package/dist/tools/contract.d.ts +10 -10
- package/dist/tools/ens.d.ts +20 -20
- package/dist/tools/logs.d.ts +4 -4
- package/dist/types.d.ts +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +128 -14
- package/src/index.ts +1 -1
- package/src/types.ts +14 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ A Model Context Protocol (MCP) server for blockchain interactions using [viem](h
|
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- Multi-chain support (Ethereum, Base,
|
|
7
|
+
- Multi-chain support (Ethereum, Arbitrum, Avalanche, Base, BNB Chain, Gnosis, Sonic, Optimism, Polygon, zkSync Era, Linea, Unichain)
|
|
8
8
|
- Smart contract interactions (read functions, ABI retrieval, source code)
|
|
9
9
|
- ENS resolution (names ↔ addresses, text records, avatars)
|
|
10
10
|
- Token balances (native & ERC20, batch queries)
|
|
@@ -64,12 +64,18 @@ npx web3-tools-mcp
|
|
|
64
64
|
|
|
65
65
|
| Network | Chain ID | Hypersync |
|
|
66
66
|
|---------|----------|-----------|
|
|
67
|
-
| Ethereum | 1 | ✅ |
|
|
68
|
-
| Base | 8453 | ✅ |
|
|
67
|
+
| Ethereum Mainnet | 1 | ✅ |
|
|
69
68
|
| Arbitrum | 42161 | ✅ |
|
|
70
|
-
|
|
|
69
|
+
| Avalanche | 43114 | ✅ |
|
|
70
|
+
| Base | 8453 | ✅ |
|
|
71
|
+
| BNB Chain | 56 | ✅ |
|
|
72
|
+
| Gnosis | 100 | ✅ |
|
|
73
|
+
| Sonic | 146 | ✅ |
|
|
71
74
|
| Optimism | 10 | ✅ |
|
|
72
|
-
|
|
|
75
|
+
| Polygon | 137 | ✅ |
|
|
76
|
+
| zkSync Era | 324 | ✅ |
|
|
77
|
+
| Linea | 59144 | ✅ |
|
|
78
|
+
| Unichain | 130 | ✅ |
|
|
73
79
|
| Localhost | 31337 | ❌ |
|
|
74
80
|
|
|
75
81
|
## Available Tools
|