Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions skills/bnbchain-mcp-skill/references/evm-tools-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ Tools that require **PRIVATE_KEY** in the MCP server env are marked with **(writ
| Tool | Description | Parameters |
|------|-------------|------------|
| is_contract | Check if address is contract or EOA | `address`, `network` |
| read_contract | Call view/pure function | `contractAddress`, `abi` (JSON array), `functionName`, `args` (optional array), `network` |
| write_contract | **(Write)** Call state-changing function | `contractAddress`, `abi`, `functionName`, `args`, `privateKey` (or env), `network` |
| read_contract | Call view/pure function | `contractAddress`, `abi` (JSON array of ABI entries, e.g. `[{"type":"function","name":"balanceOf",...}]`), `functionName`, `args` (optional array), `network` |
| write_contract | **(Write)** Call state-changing function | `contractAddress`, `abi` (JSON array of ABI entries), `functionName`, `args` (required array), `privateKey` (or env), `network` |

**read_contract:** Pass the ABI of the single function (or full contract ABI). Example args: `[]` or `["0x...", "123"]`.
**read_contract / write_contract:** Pass the contract ABI (full or relevant function entries). Example args: `[]` or `["0x...", "123"]`.

---

Expand Down