pub enum HyperwalletRequest {
Show 40 variants
Handshake(HandshakeStep),
UnlockWallet(UnlockWalletRequest),
CreateWallet(CreateWalletRequest),
ImportWallet(ImportWalletRequest),
DeleteWallet(DeleteWalletRequest),
RenameWallet(RenameWalletRequest),
ExportWallet(ExportWalletRequest),
ListWallets,
GetWalletInfo(GetWalletInfoRequest),
SetWalletLimits(SetWalletLimitsRequest),
SendEth(SendEthRequest),
SendToken(SendTokenRequest),
ApproveToken(ApproveTokenRequest),
GetBalance(GetBalanceRequest),
GetTokenBalance(GetTokenBalanceRequest),
CallContract(CallContractRequest),
SignTransaction(SignTransactionRequest),
SignMessage(SignMessageRequest),
GetTransactionHistory(GetTransactionHistoryRequest),
EstimateGas(EstimateGasRequest),
GetGasPrice,
GetTransactionReceipt(GetTransactionReceiptRequest),
ExecuteViaTba(ExecuteViaTbaRequest),
CheckTbaOwnership(CheckTbaOwnershipRequest),
SetupTbaDelegation(SetupTbaDelegationRequest),
BuildAndSignUserOperationForPayment(BuildAndSignUserOperationForPaymentRequest),
SubmitUserOperation(SubmitUserOperationRequest),
GetUserOperationReceipt(GetUserOperationReceiptRequest),
BuildUserOperation(BuildUserOperationRequest),
SignUserOperation(SignUserOperationRequest),
BuildAndSignUserOperation(BuildAndSignUserOperationRequest),
EstimateUserOperationGas(EstimateUserOperationGasRequest),
ConfigurePaymaster(ConfigurePaymasterRequest),
ResolveIdentity(ResolveIdentityRequest),
CreateNote(CreateNoteRequest),
ReadNote(ReadNoteRequest),
SetupDelegation(SetupDelegationRequest),
VerifyDelegation(VerifyDelegationRequest),
MintEntry(MintEntryRequest),
UpdateSpendingLimits(UpdateSpendingLimitsRequest),
}Expand description
All possible request types
Variants§
Handshake(HandshakeStep)
Session Management
UnlockWallet(UnlockWalletRequest)
CreateWallet(CreateWalletRequest)
Wallet Lifecycle Management
ImportWallet(ImportWalletRequest)
DeleteWallet(DeleteWalletRequest)
RenameWallet(RenameWalletRequest)
ExportWallet(ExportWalletRequest)
ListWallets
GetWalletInfo(GetWalletInfoRequest)
SetWalletLimits(SetWalletLimitsRequest)
SendEth(SendEthRequest)
Ethereum Operations
SendToken(SendTokenRequest)
ApproveToken(ApproveTokenRequest)
GetBalance(GetBalanceRequest)
GetTokenBalance(GetTokenBalanceRequest)
CallContract(CallContractRequest)
SignTransaction(SignTransactionRequest)
SignMessage(SignMessageRequest)
GetTransactionHistory(GetTransactionHistoryRequest)
EstimateGas(EstimateGasRequest)
GetGasPrice
GetTransactionReceipt(GetTransactionReceiptRequest)
ExecuteViaTba(ExecuteViaTbaRequest)
Token Bound Account Operations
CheckTbaOwnership(CheckTbaOwnershipRequest)
SetupTbaDelegation(SetupTbaDelegationRequest)
BuildAndSignUserOperationForPayment(BuildAndSignUserOperationForPaymentRequest)
Account Abstraction (ERC-4337)
SubmitUserOperation(SubmitUserOperationRequest)
GetUserOperationReceipt(GetUserOperationReceiptRequest)
BuildUserOperation(BuildUserOperationRequest)
SignUserOperation(SignUserOperationRequest)
BuildAndSignUserOperation(BuildAndSignUserOperationRequest)
EstimateUserOperationGas(EstimateUserOperationGasRequest)
ConfigurePaymaster(ConfigurePaymasterRequest)
ResolveIdentity(ResolveIdentityRequest)
Hypermap Operations
CreateNote(CreateNoteRequest)
ReadNote(ReadNoteRequest)
SetupDelegation(SetupDelegationRequest)
VerifyDelegation(VerifyDelegationRequest)
MintEntry(MintEntryRequest)
UpdateSpendingLimits(UpdateSpendingLimitsRequest)
Process Management
Trait Implementations§
Source§impl Clone for HyperwalletRequest
impl Clone for HyperwalletRequest
Source§fn clone(&self) -> HyperwalletRequest
fn clone(&self) -> HyperwalletRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HyperwalletRequest
impl RefUnwindSafe for HyperwalletRequest
impl Send for HyperwalletRequest
impl Sync for HyperwalletRequest
impl Unpin for HyperwalletRequest
impl UnsafeUnpin for HyperwalletRequest
impl UnwindSafe for HyperwalletRequest
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,
impl<T> ErasedDestructor for Twhere
T: 'static,
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