Struct sui_sdk::wallet_context::WalletContext
source · pub struct WalletContext {
pub config: PersistedConfig<SuiClientConfig>,
/* private fields */
}
Fields§
§config: PersistedConfig<SuiClientConfig>
Implementations§
source§impl WalletContext
impl WalletContext
pub fn new( config_path: &Path, request_timeout: Option<Duration>, max_concurrent_requests: Option<u64>, ) -> Result<Self, Error>
pub fn get_addresses(&self) -> Vec<SuiAddress>
pub async fn get_client(&self) -> Result<SuiClient, Error>
pub fn active_address(&mut self) -> Result<SuiAddress, Error>
sourcepub async fn get_object_ref(
&self,
object_id: ObjectID,
) -> Result<ObjectRef, Error>
pub async fn get_object_ref( &self, object_id: ObjectID, ) -> Result<ObjectRef, Error>
Get the latest object reference given a object id
sourcepub async fn gas_objects(
&self,
address: SuiAddress,
) -> Result<Vec<(u64, SuiObjectData)>, Error>
pub async fn gas_objects( &self, address: SuiAddress, ) -> Result<Vec<(u64, SuiObjectData)>, Error>
Get all the gas objects (and conveniently, gas amounts) for the address
pub async fn get_object_owner(&self, id: &ObjectID) -> Result<SuiAddress, Error>
pub async fn try_get_object_owner( &self, id: &Option<ObjectID>, ) -> Result<Option<SuiAddress>, Error>
sourcepub async fn gas_for_owner_budget(
&self,
address: SuiAddress,
budget: u64,
forbidden_gas_objects: BTreeSet<ObjectID>,
) -> Result<(u64, SuiObjectData), Error>
pub async fn gas_for_owner_budget( &self, address: SuiAddress, budget: u64, forbidden_gas_objects: BTreeSet<ObjectID>, ) -> Result<(u64, SuiObjectData), Error>
Find a gas object which fits the budget
pub async fn get_all_gas_objects_owned_by_address( &self, address: SuiAddress, ) -> Result<Vec<ObjectRef>>
pub async fn get_gas_objects_owned_by_address( &self, address: SuiAddress, limit: Option<usize>, ) -> Result<Vec<ObjectRef>>
sourcepub async fn get_one_gas_object_owned_by_address(
&self,
address: SuiAddress,
) -> Result<Option<ObjectRef>>
pub async fn get_one_gas_object_owned_by_address( &self, address: SuiAddress, ) -> Result<Option<ObjectRef>>
Given an address, return one gas object owned by this address. The actual implementation just returns the first one returned by the read api.
sourcepub async fn get_one_account(&self) -> Result<(SuiAddress, Vec<ObjectRef>)>
pub async fn get_one_account(&self) -> Result<(SuiAddress, Vec<ObjectRef>)>
Returns one address and all gas objects owned by that address.
sourcepub async fn get_one_gas_object(
&self,
) -> Result<Option<(SuiAddress, ObjectRef)>>
pub async fn get_one_gas_object( &self, ) -> Result<Option<(SuiAddress, ObjectRef)>>
Return a gas object owned by an arbitrary address managed by the wallet.
sourcepub async fn get_all_accounts_and_gas_objects(
&self,
) -> Result<Vec<(SuiAddress, Vec<ObjectRef>)>>
pub async fn get_all_accounts_and_gas_objects( &self, ) -> Result<Vec<(SuiAddress, Vec<ObjectRef>)>>
Returns all the account addresses managed by the wallet and their owned gas objects.
pub async fn get_reference_gas_price(&self) -> Result<u64, Error>
sourcepub fn add_account(&mut self, alias: Option<String>, keypair: SuiKeyPair)
pub fn add_account(&mut self, alias: Option<String>, keypair: SuiKeyPair)
Add an account
sourcepub fn sign_transaction(&self, data: &TransactionData) -> Transaction
pub fn sign_transaction(&self, data: &TransactionData) -> Transaction
Sign a transaction with a key currently managed by the WalletContext
sourcepub async fn execute_transaction_must_succeed(
&self,
tx: Transaction,
) -> SuiTransactionBlockResponse
pub async fn execute_transaction_must_succeed( &self, tx: Transaction, ) -> SuiTransactionBlockResponse
Execute a transaction and wait for it to be locally executed on the fullnode. Also expects the effects status to be ExecutionStatus::Success.
sourcepub async fn execute_transaction_may_fail(
&self,
tx: Transaction,
) -> Result<SuiTransactionBlockResponse>
pub async fn execute_transaction_may_fail( &self, tx: Transaction, ) -> Result<SuiTransactionBlockResponse>
Execute a transaction and wait for it to be locally executed on the fullnode. The transaction execution is not guaranteed to succeed and may fail. This is usually only needed in non-test environment or the caller is explicitly testing some failure behavior.
Auto Trait Implementations§
impl Freeze for WalletContext
impl !RefUnwindSafe for WalletContext
impl Send for WalletContext
impl Sync for WalletContext
impl Unpin for WalletContext
impl !UnwindSafe for WalletContext
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
self
to type T
. The semantics of numeric casting with the as
operator are followed, so <T as As>::as_::<U>
can be used in the same way as T as U
for numeric conversions. Read more§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a Request
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.