-
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 0.6 version of the API
- Loading branch information
1 parent
634c783
commit a190124
Showing
10 changed files
with
8,312 additions
and
0 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
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.