We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set up trait abstractions for external data sources required as input to serialize + compress data.
sync_status() -> Result<SyncStatus>
header_by_number(&self, number: u64) -> Result<Header>
nonce_at(&self, account: Address, block_number: u64) -> Result<u64>
block_ref_by_number(&self, number: u64) -> Result<L2BlockRef>
block_by_number(&self, number: u64) -> Result<Block>
The text was updated successfully, but these errors were encountered:
feat(ser): Trait Abstractions (#76)
1e5b6d6
### Description Re-exports trait abstractions from the [`op-alloy-rpc-jsonrpsee`](https://crates.io/crates/op-alloy-rpc-jsonrpsee) crate. Makes progress on #20
Successfully merging a pull request may close this issue.
Description
Set up trait abstractions for external data sources required as input to serialize + compress data.
sync_status() -> Result<SyncStatus>
header_by_number(&self, number: u64) -> Result<Header>
nonce_at(&self, account: Address, block_number: u64) -> Result<u64>
block_ref_by_number(&self, number: u64) -> Result<L2BlockRef>
block_by_number(&self, number: u64) -> Result<Block>
The text was updated successfully, but these errors were encountered: