Add NodeFlare action provider#1366
Open
nodeflareapp wants to merge 12 commits into
Open
Conversation
added 7 commits
July 16, 2026 16:19
🟡 Heimdall Review Status
|
added 5 commits
July 16, 2026 18:50
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds a NodeFlare action provider that gives an agent read access to on-chain data across 23 EVM chains through NodeFlare's public RPC gateway — Ethereum, Base, BNB Chain, Arbitrum, Optimism, Avalanche, HyperEVM, Polygon, and young chains like Robinhood Chain, Plasma, Ink, Zircuit, BOB and Soneium.
Unlike a wallet-bound provider, every action takes an explicit
chainargument (slug, common name, or numeric chain ID), so an agent can query any supported chain without configuring a separate RPC per chain. All actions are read-only and keyless (free public tier), and the injected wallet provider is not used —supportsNetworkreturnstrue.Structure and conventions follow the existing
alchemyaction provider (schemas inschemas.ts, string-returning actions, Jest tests, README).Actions
get_supported_chains— list the chains, with chain IDs and native currenciesget_block_number— latest block on a chainget_native_balance— native gas-token balance of an addressget_erc20_balance— ERC-20 balance for a holder (human-readable)get_token_metadata— ERC-20 name, symbol, decimals, total supplyget_gas_price— current gas price in gweiget_transaction— look up a transaction by hashMulti-read actions batch their
eth_calls into a single JSON-RPC request to stay within the public rate limit.Tests
Added
nodeflareActionProvider.test.ts(Jest, mockedfetch) coveringsupportsNetwork, chain resolution (name + numeric ID), a successful native-balance/gas read, and gateway-error handling.Checklist
src/action-providers/nodeflare/src/action-providers/index.ts