pub struct BuilderAccount { /* private fields */ }Expand description
Account credentials for authenticated relay operations.
Combines a private key signer (for EIP-712 transaction signing) with optional
builder API credentials (for HMAC-authenticated relay submission). 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.
Accepts keys with or without a 0x prefix.
Sourcepub fn signer(&self) -> &PrivateKeySigner
pub fn signer(&self) -> &PrivateKeySigner
Returns a reference to the underlying private key signer.
Sourcepub fn config(&self) -> Option<&BuilderConfig>
pub fn config(&self) -> Option<&BuilderConfig>
Returns the builder API 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
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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