Skip to content

Commit

Permalink
chore(trace-rpc-types): rename crate to rpc-trace-types (alloy-rs#97)
Browse files Browse the repository at this point in the history
* chore: rename to rpc-trace-types

* chore: fmt
  • Loading branch information
Evalir authored Jan 4, 2024
1 parent ed5a0e8 commit f517488
Show file tree
Hide file tree
Showing 22 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ alloy-networks = { version = "0.1.0", path = "crates/networks" }
alloy-pubsub = { version = "0.1.0", path = "crates/pubsub" }
alloy-rpc-client = { version = "0.1.0", path = "crates/rpc-client" }
alloy-rpc-types = { version = "0.1.0", path = "crates/rpc-types" }
alloy-trace-rpc-types = { version = "0.1.0", path = "crates/trace-rpc-types" }
alloy-rpc-trace-types = { version = "0.1.0", path = "crates/rpc-trace-types" }
alloy-signer = { version = "0.1.0", path = "crates/signer" }
alloy-signer-aws = { version = "0.1.0", path = "crates/signer-aws" }
alloy-signer-ledger = { version = "0.1.0", path = "crates/signer-ledger" }
Expand Down
2 changes: 1 addition & 1 deletion crates/providers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ alloy-networks.workspace = true
alloy-primitives.workspace = true
alloy-rpc-client.workspace = true
alloy-rpc-types.workspace = true
alloy-trace-rpc-types.workspace = true
alloy-rpc-trace-types.workspace = true
alloy-transport-http.workspace = true
alloy-transport.workspace = true
async-trait.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions crates/providers/src/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
use crate::utils::{self, EstimatorFunction};
use alloy_primitives::{Address, BlockHash, Bytes, StorageKey, StorageValue, TxHash, U256, U64};
use alloy_rpc_client::{ClientBuilder, RpcClient};
use alloy_rpc_trace_types::{
geth::{GethDebugTracingOptions, GethTrace},
parity::LocalizedTransactionTrace,
};
use alloy_rpc_types::{
AccessListWithGasUsed, Block, BlockId, BlockNumberOrTag, CallRequest,
EIP1186AccountProofResponse, FeeHistory, Filter, Log, SyncStatus, Transaction,
TransactionReceipt,
};
use alloy_trace_rpc_types::{
geth::{GethDebugTracingOptions, GethTrace},
parity::LocalizedTransactionTrace,
};
use alloy_transport::{BoxTransport, Transport, TransportErrorKind, TransportResult};
use alloy_transport_http::Http;
use auto_impl::auto_impl;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "alloy-trace-rpc-types"
name = "alloy-rpc-trace-types"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f517488

Please sign in to comment.