-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate alloy-rs/op-alloy-protocol->op-rs/maili-protocol & alloy-rs/o…
…p-alloy-provider->op-rs/maili-provider
- Loading branch information
Showing
131 changed files
with
200 additions
and
13,738 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
# Licensing | ||
|
||
op-alloy is dually licensed under the [Apache 2.0][apache] and the [MIT][mit] license. | ||
maili is dually licensed under the [Apache 2.0][apache] and the [MIT][mit] license. | ||
|
||
The [SNAPPY license][snappy] is added for the use of [snap][snap] in `op-alloy-rpc-types-engine`. | ||
|
||
[snap]: https://github.com/BurntSushi/rust-snappy | ||
[snappy]: https://github.com/alloy-rs/op-alloy/blob/main/SNAPPY-LICENSE | ||
[apache]: https://github.com/alloy-rs/op-alloy/blob/main/LICENSE-APACHE | ||
[mit]: https://github.com/alloy-rs/op-alloy/blob/main/LICENSE-MIT | ||
[apache]: https://github.com/op-rs/maili/blob/main/LICENSE-APACHE | ||
[mit]: https://github.com/op-rs/maili/blob/main/LICENSE-MIT |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,16 @@ | ||
# Building | ||
|
||
This section offers in-depth documentation into the various `op-alloy` crates. | ||
This section offers in-depth documentation into the various `maili` crates. | ||
Some of the primary crates and their types are listed below. | ||
|
||
- [`op-alloy-genesis`][op-alloy-genesis] provides the | ||
[`RollupConfig`][rollup-config] and [`SystemConfig`][system-config] types. | ||
- [`op-alloy-consensus`][op-alloy-consensus] provides [`OpBlock`][op-block], | ||
[`OpTxEnvelope`][op-tx-envelope], [`OpReceiptEnvelope`][op-rx-envelope], | ||
[`Hardforks`][hardforks], and more. | ||
- [`op-alloy-rpc-types-engine`][op-alloy-rpc-types-engine] provides the | ||
[`OpPayloadAttributes`][op-payload-attributes] and | ||
[`OpAttributesWithParent`][op-attributes-with-parent]. | ||
- [`op-alloy-protocol`][op-alloy-protocol] provides [`Frame`][frame], | ||
- [`maili-protocol`][maili-protocol] provides [`Frame`][frame], | ||
[`Channel`][channel], [`Batch`][batch] types and more. | ||
|
||
|
||
<!-- Links --> | ||
|
||
[rollup-config]: https://docs.rs/op-alloy-genesis/latest/op_alloy_genesis/rollup/struct.RollupConfig.html | ||
[system-config]: https://docs.rs/op-alloy-genesis/latest/op_alloy_genesis/system/struct.SystemConfig.html | ||
[frame]: https://docs.rs/maili-protocol/latest/maili_protocol/struct.Frame.html | ||
[channel]: https://docs.rs/maili-protocol/latest/maili_protocol/struct.Channel.html | ||
[batch]: https://docs.rs/maili-protocol/latest/maili_protocol/enum.Batch.html | ||
|
||
[op-block]: https://docs.rs/op-alloy-consensus/latest/op_alloy_consensus/type.OpBlock.html | ||
[op-tx-envelope]: https://docs.rs/op-alloy-consensus/latest/op_alloy_consensus/enum.OpTxEnvelope.html | ||
[op-rx-envelope]: https://docs.rs/op-alloy-consensus/latest/op_alloy_consensus/enum.OpReceiptEnvelope.html | ||
[hardforks]: https://docs.rs/op-alloy-consensus/latest/op_alloy_consensus/hardforks/struct.Hardforks.html | ||
|
||
[op-payload-attributes]: https://docs.rs/op-alloy-rpc-types-engine/latest/op_alloy_rpc_types_engine/struct.OpPayloadAttributes.html | ||
[op-attributes-with-parent]: https://docs.rs/op-alloy-rpc-types-engine/latest/op_alloy_rpc_types_engine/struct.OpAttributesWithParent.html | ||
|
||
[frame]: https://docs.rs/op-alloy-protocol/latest/op_alloy_protocol/struct.Frame.html | ||
[channel]: https://docs.rs/op-alloy-protocol/latest/op_alloy_protocol/struct.Channel.html | ||
[batch]: https://docs.rs/op-alloy-protocol/latest/op_alloy_protocol/enum.Batch.html | ||
|
||
[op-alloy-genesis]: https://crates.io/crates/op-alloy-genesis | ||
[op-alloy-consensus]: https://crates.io/crates/op-alloy-consensus | ||
[op-alloy-protocol]: https://crates.io/crates/op-alloy-protocol | ||
[op-alloy-rpc-types-engine]: https://crates.io/crates/op-alloy-rpc-types-engine | ||
[maili-protocol]: https://crates.io/crates/maili-protocol |
Oops, something went wrong.