-
Notifications
You must be signed in to change notification settings - Fork 694
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
1,884 additions
and
42 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//!Types, and traits to integrate pallet-revive with EVM. | ||
#![warn(missing_docs)] | ||
|
||
mod api; | ||
pub use api::*; | ||
pub mod runtime; |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
//! JSON-RPC methods and types, for Ethereum. | ||
|
||
mod byte; | ||
pub use byte::*; | ||
|
||
mod rlp_codec; | ||
pub use rlp; | ||
|
||
mod type_id; | ||
pub use type_id::*; | ||
|
||
mod rpc_types; | ||
mod rpc_types_gen; | ||
pub use rpc_types_gen::*; | ||
|
||
#[cfg(feature = "std")] | ||
pub mod rpc_methods_gen; | ||
#[cfg(feature = "std")] | ||
pub use rpc_methods_gen::*; | ||
|
||
mod signature; |
Oops, something went wrong.