pub struct BuilderAccount { /* private fields */ }Expand description
Account credentials for authenticated relay operations.
Combines a private key signer (for EIP-712 transaction signing) with an optional
AuthConfig for relay submission. Two authentication schemes are supported:
AuthConfig::Builder (HMAC-signed builder API credentials) and
AuthConfig::RelayerApiKey (static relayer API key headers). The Debug
implementation redacts the private key to prevent accidental leakage in logs.
Implementations§
Source§impl BuilderAccount
impl BuilderAccount
Sourcepub fn new(
private_key: impl Into<String>,
config: Option<BuilderConfig>,
) -> Result<Self, RelayError>
pub fn new( private_key: impl Into<String>, config: Option<BuilderConfig>, ) -> Result<Self, RelayError>
Create a new account from a hex-encoded private key and optional builder config.
Wraps the BuilderConfig in AuthConfig::Builder internally.
Accepts keys with or without a 0x prefix.
Sourcepub fn with_relayer_api_key(
private_key: impl Into<String>,
key: String,
address: String,
) -> Result<Self, RelayError>
pub fn with_relayer_api_key( private_key: impl Into<String>, key: String, address: String, ) -> Result<Self, RelayError>
Create a new account from a hex-encoded private key and relayer API key credentials.
Sourcepub fn with_auth_config(
private_key: impl Into<String>,
config: Option<AuthConfig>,
) -> Result<Self, RelayError>
pub fn with_auth_config( private_key: impl Into<String>, config: Option<AuthConfig>, ) -> Result<Self, RelayError>
Create a new account from a hex-encoded private key and a pre-built AuthConfig.
Sourcepub fn signer(&self) -> &PrivateKeySigner
pub fn signer(&self) -> &PrivateKeySigner
Returns a reference to the underlying private key signer.
Sourcepub fn auth_config(&self) -> Option<&AuthConfig>
pub fn auth_config(&self) -> Option<&AuthConfig>
Returns the auth config, if one was provided.
Trait Implementations§
Source§impl Clone for BuilderAccount
impl Clone for BuilderAccount
Source§fn clone(&self) -> BuilderAccount
fn clone(&self) -> BuilderAccount
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for BuilderAccount
impl RefUnwindSafe for BuilderAccount
impl Send for BuilderAccount
impl Sync for BuilderAccount
impl Unpin for BuilderAccount
impl UnsafeUnpin for BuilderAccount
impl UnwindSafe for BuilderAccount
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more