feat!: add blobstream rpc methods and explorer UI - #9
Open
Ferret-san wants to merge 13 commits into
Open
Conversation
nuke-web3
reviewed
Feb 24, 2026
nuke-web3
reviewed
Feb 24, 2026
Member
There was a problem hiding this comment.
figure contracts/out should be in .gitignore too?
Collaborator
Author
|
oops, yes they should!
…On Tue, Feb 24, 2026 at 17:55 Nuke 🌄 ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
On contracts/out/IBlobstreamX.sol/IBlobstreamX.json
<#9 (comment)>:
figure contracts/out should be in .gitignore too?
—
Reply to this email directly, view it on GitHub
<#9 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AHTVH2R4SWLRDMTQDYBLUMT4NTJFJAVCNFSM6AAAAACV6SGTMGVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZTQNJQHE2DONBTGE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Contributor
Collaborator
Author
|
merged main into the branch, plz lmk if you encounter any issues! |
Member
|
pushed up:
|
nuke-web3
reviewed
Mar 5, 2026
Member
There was a problem hiding this comment.
This is just in the explorer UI? IMHO we don't need the images/logos at all for a devtool 🤷
Comment on lines
-103
to
-122
| // async fn share_get_eds(&self, height: u64) -> RpcResult<ExtendedDataSquare> { | ||
| // self.storage | ||
| // .get_eds_at_height(height) | ||
| // .await | ||
| // .map_err(|e| jsonrpsee::core::Error::Custom(format!("Failed to get EDS: {}", e))) | ||
| // } | ||
|
|
||
| // async fn share_get_range( | ||
| // &self, | ||
| // height: u64, | ||
| // start: u64, | ||
| // end: u64, | ||
| // ) -> RpcResult<GetRangeResponse> { | ||
| // self.storage | ||
| // .get_share_range(height, start, end) | ||
| // .await | ||
| // .map_err(|e| { | ||
| // jsonrpsee::core::Error::Custom(format!("Failed to get share range: {}", e)) | ||
| // }) | ||
| // } |
Member
There was a problem hiding this comment.
did there methods get moved or replaced?
I see some, but not these, are in src/rpc/header.rs - just want to check 🙏
gbarros
approved these changes
Mar 6, 2026
gbarros
left a comment
Contributor
There was a problem hiding this comment.
I've pushed a couple of smaller fixes, it it's all green now for me.
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.
Overview
Built out a full blobstream + demo stack and refreshed the explorer UI to a glassy, Celestia‑toned map with a fiber bridge and paginated columns. The RPC service now implements blobstream tuple roots/proofs, the CLI has deploy + demo commands, the relayer and mock contracts are integrated, and the UI runs via Bun/Elysia with click‑to‑inspect modals.
Key changes (highlights)
Docs updated
How to use the new features (as documented)
localestia blobstream deploy --eth-rpc-url http://127.0.0.1:8545/ --private-key 0x...localestia demo --relayer-interval-ms 1000 --ui-port 3030cd ui && bun install && CELESTIA_HTTP_URL=... ETH_RPC_URL=... BLOBSTREAM_CONTRACT_ADDRESS=... bun src/index.tsFiles of interest