-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for the v0.6 of the Starknet API (#35)
- Loading branch information
1 parent
634c783
commit bd6b6ee
Showing
11 changed files
with
8,320 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//! v0.6.0 of the API. | ||
pub use starknet_types_core::felt::Felt; | ||
|
||
pub use crate::custom::{ | ||
BlockId, BroadcastedDeclareTxn, BroadcastedDeployAccountTxn, BroadcastedInvokeTxn, | ||
SyncingStatus, | ||
}; | ||
|
||
mod starknet_api_openrpc; | ||
mod starknet_trace_api_openrpc; | ||
mod starknet_write_api; | ||
|
||
pub use self::starknet_api_openrpc::*; | ||
pub use self::starknet_trace_api_openrpc::*; | ||
pub use self::starknet_write_api::*; |
Oops, something went wrong.