@@ -10,9 +10,8 @@ use alloy::{
10
10
} ,
11
11
} ,
12
12
} ;
13
- use std:: { borrow:: Cow , env, num, str:: FromStr } ;
14
-
15
13
use signet_zenith:: Zenith ;
14
+ use std:: { borrow:: Cow , env, num, str:: FromStr } ;
16
15
17
16
// Keys for .env variables that need to be set to configure the builder.
18
17
const HOST_CHAIN_ID : & str = "HOST_CHAIN_ID" ;
@@ -125,7 +124,7 @@ impl ConfigError {
125
124
}
126
125
}
127
126
128
- /// Defines a full provider.
127
+ /// Type alias for the provider used in the builder .
129
128
pub type Provider = FillProvider <
130
129
JoinFill <
131
130
JoinFill <
@@ -138,7 +137,7 @@ pub type Provider = FillProvider<
138
137
Ethereum ,
139
138
> ;
140
139
141
- /// Defines a provider type used to read-only .
140
+ /// Type alias for the provider used in the builder, without a wallet .
142
141
pub type WalletlessProvider = FillProvider <
143
142
JoinFill <
144
143
Identity ,
@@ -148,7 +147,7 @@ pub type WalletlessProvider = FillProvider<
148
147
Ethereum ,
149
148
> ;
150
149
151
- /// Defines a [`Zenith`] instance that is generic over [`Provider`]
150
+ /// A [`Zenith`] contract instance using [`Provider`] as the provider.
152
151
pub type ZenithInstance < P = Provider > = Zenith :: ZenithInstance < ( ) , P , alloy:: network:: Ethereum > ;
153
152
154
153
impl BuilderConfig {
0 commit comments