├── .config ├── nextest.toml └── zepter.yaml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── BUG-FORM.yml │ ├── FEATURE-FORM.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── scripts │ └── install_test_binaries.sh └── workflows │ ├── book.yml │ ├── ci.yml │ ├── deps.yml │ └── lint.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── FUNDING.json ├── Justfile ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── SECURITY.md ├── SNAPPY-LICENSE ├── book ├── .gitignore ├── README.md ├── book.toml ├── custom.css ├── mermaid-init.js ├── mermaid.min.js ├── src │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── SUMMARY.md │ ├── building │ │ ├── README.md │ │ ├── consensus.md │ │ ├── engine.md │ │ └── rpc_types.md │ ├── glossary.md │ ├── intro.md │ ├── links.md │ └── starting.md ├── templates │ └── glossary-link.md └── theme │ └── index.hbs ├── cliff.toml ├── crates ├── consensus │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── alloy_compat.rs │ │ ├── block.rs │ │ ├── eip1559.rs │ │ ├── interop.rs │ │ ├── lib.rs │ │ ├── receipts │ │ ├── deposit.rs │ │ ├── envelope.rs │ │ ├── mod.rs │ │ └── receipt.rs │ │ ├── source.rs │ │ └── transaction │ │ ├── deposit.rs │ │ ├── envelope.rs │ │ ├── meta.rs │ │ ├── mod.rs │ │ ├── pooled.rs │ │ ├── tx_type.rs │ │ └── typed.rs ├── network │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── lib.rs ├── op-alloy │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── lib.rs ├── provider │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── ext │ │ ├── engine.rs │ │ └── mod.rs │ │ └── lib.rs ├── rpc-jsonrpsee │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── lib.rs │ │ └── traits.rs ├── rpc-types-engine │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── attributes.rs │ │ ├── envelope.rs │ │ ├── flashblock │ │ ├── base.rs │ │ ├── delta.rs │ │ ├── error.rs │ │ ├── metadata.rs │ │ ├── mod.rs │ │ └── payload.rs │ │ ├── lib.rs │ │ ├── payload │ │ ├── error.rs │ │ ├── mod.rs │ │ ├── v3.rs │ │ └── v4.rs │ │ ├── sidecar.rs │ │ └── superchain.rs └── rpc-types │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── error.rs │ ├── genesis.rs │ ├── lib.rs │ ├── receipt.rs │ ├── transaction.rs │ └── transaction │ └── request.rs ├── deny.toml ├── release.toml ├── rustfmt.toml ├── scripts ├── changelog.sh └── check_no_std.sh └── typos.toml /.config/nextest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/.config/nextest.toml -------------------------------------------------------------------------------- /.config/zepter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/.config/zepter.yaml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @mattsse @emhane @refcell @clabby 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG-FORM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/.github/ISSUE_TEMPLATE/BUG-FORM.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-FORM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/.github/ISSUE_TEMPLATE/FEATURE-FORM.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/scripts/install_test_binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/.github/scripts/install_test_binaries.sh -------------------------------------------------------------------------------- /.github/workflows/book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/.github/workflows/book.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/.github/workflows/deps.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | .vscode 4 | .idea 5 | .env 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/Cargo.toml -------------------------------------------------------------------------------- /FUNDING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/FUNDING.json -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SNAPPY-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/SNAPPY-LICENSE -------------------------------------------------------------------------------- /book/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/README.md -------------------------------------------------------------------------------- /book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/book.toml -------------------------------------------------------------------------------- /book/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/custom.css -------------------------------------------------------------------------------- /book/mermaid-init.js: -------------------------------------------------------------------------------- 1 | mermaid.initialize({ startOnLoad: true, theme: 'dark' }); 2 | -------------------------------------------------------------------------------- /book/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/mermaid.min.js -------------------------------------------------------------------------------- /book/src/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/src/CONTRIBUTING.md -------------------------------------------------------------------------------- /book/src/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/src/LICENSE.md -------------------------------------------------------------------------------- /book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/src/SUMMARY.md -------------------------------------------------------------------------------- /book/src/building/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/src/building/README.md -------------------------------------------------------------------------------- /book/src/building/consensus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/src/building/consensus.md -------------------------------------------------------------------------------- /book/src/building/engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/src/building/engine.md -------------------------------------------------------------------------------- /book/src/building/rpc_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/src/building/rpc_types.md -------------------------------------------------------------------------------- /book/src/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/src/glossary.md -------------------------------------------------------------------------------- /book/src/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/src/intro.md -------------------------------------------------------------------------------- /book/src/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/src/links.md -------------------------------------------------------------------------------- /book/src/starting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/src/starting.md -------------------------------------------------------------------------------- /book/templates/glossary-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/templates/glossary-link.md -------------------------------------------------------------------------------- /book/theme/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/book/theme/index.hbs -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/cliff.toml -------------------------------------------------------------------------------- /crates/consensus/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/Cargo.toml -------------------------------------------------------------------------------- /crates/consensus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/README.md -------------------------------------------------------------------------------- /crates/consensus/src/alloy_compat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/alloy_compat.rs -------------------------------------------------------------------------------- /crates/consensus/src/block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/block.rs -------------------------------------------------------------------------------- /crates/consensus/src/eip1559.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/eip1559.rs -------------------------------------------------------------------------------- /crates/consensus/src/interop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/interop.rs -------------------------------------------------------------------------------- /crates/consensus/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/lib.rs -------------------------------------------------------------------------------- /crates/consensus/src/receipts/deposit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/receipts/deposit.rs -------------------------------------------------------------------------------- /crates/consensus/src/receipts/envelope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/receipts/envelope.rs -------------------------------------------------------------------------------- /crates/consensus/src/receipts/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/receipts/mod.rs -------------------------------------------------------------------------------- /crates/consensus/src/receipts/receipt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/receipts/receipt.rs -------------------------------------------------------------------------------- /crates/consensus/src/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/source.rs -------------------------------------------------------------------------------- /crates/consensus/src/transaction/deposit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/transaction/deposit.rs -------------------------------------------------------------------------------- /crates/consensus/src/transaction/envelope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/transaction/envelope.rs -------------------------------------------------------------------------------- /crates/consensus/src/transaction/meta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/transaction/meta.rs -------------------------------------------------------------------------------- /crates/consensus/src/transaction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/transaction/mod.rs -------------------------------------------------------------------------------- /crates/consensus/src/transaction/pooled.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/transaction/pooled.rs -------------------------------------------------------------------------------- /crates/consensus/src/transaction/tx_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/transaction/tx_type.rs -------------------------------------------------------------------------------- /crates/consensus/src/transaction/typed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/consensus/src/transaction/typed.rs -------------------------------------------------------------------------------- /crates/network/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/network/Cargo.toml -------------------------------------------------------------------------------- /crates/network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/network/README.md -------------------------------------------------------------------------------- /crates/network/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/network/src/lib.rs -------------------------------------------------------------------------------- /crates/op-alloy/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/op-alloy/Cargo.toml -------------------------------------------------------------------------------- /crates/op-alloy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/op-alloy/README.md -------------------------------------------------------------------------------- /crates/op-alloy/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/op-alloy/src/lib.rs -------------------------------------------------------------------------------- /crates/provider/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/provider/Cargo.toml -------------------------------------------------------------------------------- /crates/provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/provider/README.md -------------------------------------------------------------------------------- /crates/provider/src/ext/engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/provider/src/ext/engine.rs -------------------------------------------------------------------------------- /crates/provider/src/ext/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/provider/src/ext/mod.rs -------------------------------------------------------------------------------- /crates/provider/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/provider/src/lib.rs -------------------------------------------------------------------------------- /crates/rpc-jsonrpsee/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-jsonrpsee/Cargo.toml -------------------------------------------------------------------------------- /crates/rpc-jsonrpsee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-jsonrpsee/README.md -------------------------------------------------------------------------------- /crates/rpc-jsonrpsee/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-jsonrpsee/src/lib.rs -------------------------------------------------------------------------------- /crates/rpc-jsonrpsee/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-jsonrpsee/src/traits.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/Cargo.toml -------------------------------------------------------------------------------- /crates/rpc-types-engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/README.md -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/attributes.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/envelope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/envelope.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/flashblock/base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/flashblock/base.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/flashblock/delta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/flashblock/delta.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/flashblock/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/flashblock/error.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/flashblock/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/flashblock/metadata.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/flashblock/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/flashblock/mod.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/flashblock/payload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/flashblock/payload.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/lib.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/payload/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/payload/error.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/payload/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/payload/mod.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/payload/v3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/payload/v3.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/payload/v4.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/payload/v4.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/sidecar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/sidecar.rs -------------------------------------------------------------------------------- /crates/rpc-types-engine/src/superchain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types-engine/src/superchain.rs -------------------------------------------------------------------------------- /crates/rpc-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types/Cargo.toml -------------------------------------------------------------------------------- /crates/rpc-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types/README.md -------------------------------------------------------------------------------- /crates/rpc-types/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types/src/error.rs -------------------------------------------------------------------------------- /crates/rpc-types/src/genesis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types/src/genesis.rs -------------------------------------------------------------------------------- /crates/rpc-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types/src/lib.rs -------------------------------------------------------------------------------- /crates/rpc-types/src/receipt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types/src/receipt.rs -------------------------------------------------------------------------------- /crates/rpc-types/src/transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types/src/transaction.rs -------------------------------------------------------------------------------- /crates/rpc-types/src/transaction/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/crates/rpc-types/src/transaction/request.rs -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/deny.toml -------------------------------------------------------------------------------- /release.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/release.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/scripts/changelog.sh -------------------------------------------------------------------------------- /scripts/check_no_std.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/scripts/check_no_std.sh -------------------------------------------------------------------------------- /typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloy-rs/op-alloy/HEAD/typos.toml --------------------------------------------------------------------------------