feat(infura): add Infura WASM FDW for blockchain data#547
Merged
burmecia merged 7 commits intosupabase:mainfrom Jan 7, 2026
Merged
feat(infura): add Infura WASM FDW for blockchain data#547burmecia merged 7 commits intosupabase:mainfrom
burmecia merged 7 commits intosupabase:mainfrom
Conversation
Add a new WebAssembly Foreign Data Wrapper for querying blockchain data via Infura JSON-RPC API. Supports Ethereum, Polygon, and other EVM-compatible networks. Features: - 5 resource types: blocks, transactions, balances, logs, chain_info - Query pushdown for block numbers, transaction hashes, and addresses - Vault integration for secure API key storage (api_key_id option) - Rate limit handling with exponential backoff retry - Import foreign schema support for auto-generating tables Closes supabase#394
burmecia
approved these changes
Jan 7, 2026
Member
burmecia
left a comment
There was a problem hiding this comment.
thanks for the PR! I made some bug fixing and improvements on the your code and docs, it is looking good.
DenisBessa
pushed a commit
to DenisBessa/wrappers
that referenced
this pull request
Mar 12, 2026
* feat(infura): add Infura WASM FDW for blockchain data Add a new WebAssembly Foreign Data Wrapper for querying blockchain data via Infura JSON-RPC API. Supports Ethereum, Polygon, and other EVM-compatible networks. Features: - 5 resource types: blocks, transactions, balances, logs, chain_info - Query pushdown for block numbers, transaction hashes, and addresses - Vault integration for secure API key storage (api_key_id option) - Rate limit handling with exponential backoff retry - Import foreign schema support for auto-generating tables Closes supabase#394 * feat(infura): add documentation and source files * feat(infura): add FDW implementation and tests * test(infura): add mock server endpoints and smoke test * test(infura): add Infura FDW smoke test * fix issues and improve docs * add missing columns in test case --------- Co-authored-by: Bo Lu <lv.patrick@gmail.com>
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.
Summary
api_key_idoption)Test plan
cargo component build -p infura_fdw --release)wrappers/src/fdw/wasm_fdw/tests.rsCloses #394