Update docs/DEV.md

This commit is contained in:
contractless 2026-07-01 05:02:38 +00:00
parent a53e5acbbc
commit 248f6b3bed
1 changed files with 8 additions and 8 deletions

View File

@ -108,7 +108,7 @@ Typical uses:
- inspect transaction fields - inspect transaction fields
- apply or undo balance-sheet effects - apply or undo balance-sheet effects
For user-facing transaction behavior, see [TRANSACTIONS.md](TRANSACTIONS.md). For user-facing transaction behavior, see [TRANSACTIONS.md](./TRANSACTIONS.md).
### Common Hashing and Types ### Common Hashing and Types
@ -148,7 +148,7 @@ Typical uses:
- inspect client request helpers - inspect client request helpers
- inspect response structures - inspect response structures
For raw client handshake notes, see [DEV_CLIENTS.md](DEV_CLIENTS.md). For raw client handshake notes, see [DEV_CLIENTS.md](./DEV_CLIENTS.md).
### Standalone Tool Connections ### Standalone Tool Connections
@ -225,7 +225,7 @@ When adding a tool:
- use `standalone_tools::connections` for RPC client requests - use `standalone_tools::connections` for RPC client requests
- keep RPC payloads binary across the TCP stream - keep RPC payloads binary across the TCP stream
- print human-readable or JSON-decoded output only after the binary response is received - print human-readable or JSON-decoded output only after the binary response is received
- add the tool to [CLI_TOOLS.md](CLI_TOOLS.md) - add the tool to [CLI_TOOLS.md](./CLI_TOOLS.md)
## Adding New RPC Commands ## Adding New RPC Commands
@ -243,8 +243,8 @@ When adding a command:
## Documentation Map ## Documentation Map
- [README.md](../README.md): build, configure and start a node - [README.md](../README.md): build, configure and start a node
- [CLI_TOOLS.md](CLI_TOOLS.md): command-line tool reference - [CLI_TOOLS.md](./CLI_TOOLS.md): command-line tool reference
- [TRANSACTIONS.md](TRANSACTIONS.md): transaction behavior reference - [TRANSACTIONS.md](./TRANSACTIONS.md): transaction behavior reference
- [POSTGRES.md](POSTGRES.md): manual PostgreSQL setup - [POSTGRES.md](./POSTGRES.md): manual PostgreSQL setup
- [SETTINGS.md](SETTINGS.md): `settings.ini` field reference - [SETTINGS.md](./SETTINGS.md): `settings.ini` field reference
- [DEV_CLIENTS.md](DEV_CLIENTS.md): low-level client handshake and request notes - [DEV_CLIENTS.md](./DEV_CLIENTS.md): low-level client handshake and request notes