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) -> Result<Self, Error>
pub fn new_for_tests( keystore: Keystore, external: Option<Keystore>, path: Option<PathBuf>, ) -> Self
pub fn with_request_timeout(self, request_timeout: Duration) -> Self
pub fn with_max_concurrent_requests(self, max_concurrent_requests: u64) -> Self
pub fn with_env_override(self, env_override: String) -> Self
pub fn get_addresses(&self) -> Vec<SuiAddress>
pub fn get_env_override(&self) -> Option<String>
pub fn get_identity_address( &mut self, input: Option<KeyIdentity>, ) -> Result<SuiAddress, Error>
pub async fn get_client(&self) -> Result<SuiClient, Error>
Sourcepub async fn load_or_cache_chain_id(
    &self,
    client: &SuiClient,
) -> Result<String, Error>
 
pub async fn load_or_cache_chain_id( &self, client: &SuiClient, ) -> Result<String, Error>
Load the chain ID corresponding to the active environment, or fetch and cache it if not present.
The chain ID is cached in the client.yaml file to avoid redundant network requests.
Sourcepub async fn cache_chain_id(&self, client: &SuiClient) -> Result<String, Error>
 
pub async fn cache_chain_id(&self, client: &SuiClient) -> Result<String, Error>
Cache (or recache) chain ID for the active environment by fetching it from the network
pub fn get_active_env(&self) -> Result<&SuiEnv, 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 get_full_object_ref(
    &self,
    object_id: ObjectID,
) -> Result<FullObjectRef, Error>
 
pub async fn get_full_object_ref( &self, object_id: ObjectID, ) -> Result<FullObjectRef, Error>
Get the latest full 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 infer_sender(
    &mut self,
    gas: &[ObjectID],
) -> Result<SuiAddress, Error>
 
pub async fn infer_sender( &mut self, gas: &[ObjectID], ) -> Result<SuiAddress, Error>
Infer the sender of a transaction based on the gas objects provided. If no gas objects are provided, assume the active address is the sender.
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 async fn add_account(&mut self, alias: Option<String>, keypair: SuiKeyPair)
 
pub async fn add_account(&mut self, alias: Option<String>, keypair: SuiKeyPair)
Add an account
pub fn get_keystore_by_identity( &self, key_identity: &KeyIdentity, ) -> Result<&Keystore, Error>
pub fn get_keystore_by_identity_mut( &mut self, key_identity: &KeyIdentity, ) -> Result<&mut Keystore, Error>
pub async fn sign_secure( &self, key_identity: &KeyIdentity, data: &TransactionData, intent: Intent, ) -> Result<Signature, Error>
Sourcepub async fn sign_transaction(&self, data: &TransactionData) -> Transaction
 
pub async 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<T> AnySync for T
 
impl<T> AnySync for T
§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§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 tonic::Request§impl<L> LayerExt<L> for L
 
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
    L: Layer<S>,
 
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
    L: Layer<S>,
Layered].§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> Pointable for T
 
impl<T> Pointable for T
§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.