Skip to content

Releases: dvgui/evm-rpc

EVM RPC Framework v0.1.0

29 Jul 21:50
Compare
Choose a tag to compare

EVM RPC Framework vv0.1.0

Initial release of a TypeScript framework for EVM blockchain RPC interactions.

Features

  • CLI tool for querying EVM-compatible chains
  • Block finalization status support (latest, safe, finalized, pending, earliest)
  • Read-only operations with full TypeScript support
  • Programmatic API with EVMRPCClient class
  • Built-in address and transaction validation

Commands

  • Get blockchain info, block data, account balances
  • Make contract calls and retrieve transaction details
  • Check block finalization status
  • Support for all standard EVM RPC methods

Installation

  1. Download and extract the release archive
  2. Run yarn install to install dependencies
  3. Use node dist/cli.js --help to see available commands

Quick Start

node dist/cli.js -u YOUR_RPC_URL info

Perfect for blockchain developers needing reliable EVM chain data access without private keys.