Skip to content

Commit

Permalink
add support for the 0.6 version of the API
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-mathieu committed Jan 12, 2024
1 parent 634c783 commit a190124
Show file tree
Hide file tree
Showing 10 changed files with 8,312 additions and 0 deletions.
16 changes: 16 additions & 0 deletions crates/starknet-types-rpc/src/v0_6_0/mod.rs
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::*;
Loading

0 comments on commit a190124

Please sign in to comment.