pub struct SuiAddress(/* private fields */);
Implementations§
Source§impl SuiAddress
impl SuiAddress
pub const ZERO: Self
Sourcepub fn random_for_testing_only() -> Self
pub fn random_for_testing_only() -> Self
Return a random SuiAddress.
pub fn generate<R: RngCore + CryptoRng>(rng: R) -> Self
Sourcepub fn optional_address_as_hex<S>(
key: &Option<SuiAddress>,
serializer: S,
) -> Result<S::Ok, S::Error>where
S: Serializer,
pub fn optional_address_as_hex<S>(
key: &Option<SuiAddress>,
serializer: S,
) -> Result<S::Ok, S::Error>where
S: Serializer,
Serialize an Option<SuiAddress>
in Hex.
Sourcepub fn optional_address_from_hex<'de, D>(
deserializer: D,
) -> Result<Option<SuiAddress>, D::Error>where
D: Deserializer<'de>,
pub fn optional_address_from_hex<'de, D>(
deserializer: D,
) -> Result<Option<SuiAddress>, D::Error>where
D: Deserializer<'de>,
Deserialize into an Option<SuiAddress>
.
Sourcepub fn from_bytes<T: AsRef<[u8]>>(bytes: T) -> Result<Self, SuiError>
pub fn from_bytes<T: AsRef<[u8]>>(bytes: T) -> Result<Self, SuiError>
Parse a SuiAddress from a byte array or buffer.
Sourcepub fn try_from_padded(inputs: &ZkLoginInputs) -> SuiResult<Self>
pub fn try_from_padded(inputs: &ZkLoginInputs) -> SuiResult<Self>
This derives a zkLogin address by parsing the iss and address_seed from [struct ZkLoginAuthenticator]. Define as iss_bytes_len || iss_bytes || padded_32_byte_address_seed. This is to be differentiated with try_from_unpadded defined below.
Sourcepub fn try_from_unpadded(inputs: &ZkLoginInputs) -> SuiResult<Self>
pub fn try_from_unpadded(inputs: &ZkLoginInputs) -> SuiResult<Self>
Define as iss_bytes_len || iss_bytes || unpadded_32_byte_address_seed.
Trait Implementations§
Source§impl Arbitrary for SuiAddress
impl Arbitrary for SuiAddress
Source§type Parameters = <[u8; 32] as Arbitrary>::Parameters
type Parameters = <[u8; 32] as Arbitrary>::Parameters
arbitrary_with
accepts for configuration
of the generated Strategy
. Parameters must implement Default
.Source§type Strategy = Map<<[u8; 32] as Arbitrary>::Strategy, fn(_: [u8; 32]) -> SuiAddress>
type Strategy = Map<<[u8; 32] as Arbitrary>::Strategy, fn(_: [u8; 32]) -> SuiAddress>
Strategy
used to generate values of type Self
.Source§fn arbitrary_with(_top: Self::Parameters) -> Self::Strategy
fn arbitrary_with(_top: Self::Parameters) -> Self::Strategy
Source§impl AsRef<[u8]> for SuiAddress
impl AsRef<[u8]> for SuiAddress
Source§impl Clone for SuiAddress
impl Clone for SuiAddress
Source§fn clone(&self) -> SuiAddress
fn clone(&self) -> SuiAddress
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SuiAddress
impl Debug for SuiAddress
Source§impl Default for SuiAddress
impl Default for SuiAddress
Source§fn default() -> SuiAddress
fn default() -> SuiAddress
Source§impl<'de> Deserialize<'de> for SuiAddress
impl<'de> Deserialize<'de> for SuiAddress
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Display for SuiAddress
impl Display for SuiAddress
Source§impl From<&MultiSigPublicKey> for SuiAddress
impl From<&MultiSigPublicKey> for SuiAddress
Source§fn from(multisig_pk: &MultiSigPublicKey) -> Self
fn from(multisig_pk: &MultiSigPublicKey) -> Self
Derive a SuiAddress from [struct MultiSigPublicKey]. A MultiSig address
is defined as the 32-byte Blake2b hash of serializing the flag, the
threshold, concatenation of all n flag, public keys and
its weight. flag_MultiSig || threshold || flag_1 || pk_1 || weight_1 || ... || flag_n || pk_n || weight_n
.
When flag_i is ZkLogin, pk_i refers to [struct ZkLoginPublicIdentifier] derived from padded address seed in bytes and iss.
Source§impl From<&PublicKey> for SuiAddress
impl From<&PublicKey> for SuiAddress
Source§impl<T: SuiPublicKey> From<&T> for SuiAddress
impl<T: SuiPublicKey> From<&T> for SuiAddress
Source§impl From<AccountAddress> for SuiAddress
impl From<AccountAddress> for SuiAddress
Source§fn from(address: AccountAddress) -> SuiAddress
fn from(address: AccountAddress) -> SuiAddress
Source§impl From<Address> for SuiAddress
impl From<Address> for SuiAddress
Source§impl From<ObjectID> for SuiAddress
impl From<ObjectID> for SuiAddress
Source§fn from(object_id: ObjectID) -> SuiAddress
fn from(object_id: ObjectID) -> SuiAddress
Source§impl From<ObjectId> for SuiAddress
impl From<ObjectId> for SuiAddress
Source§impl From<SuiAddress> for AccountAddress
impl From<SuiAddress> for AccountAddress
Source§fn from(address: SuiAddress) -> Self
fn from(address: SuiAddress) -> Self
Source§impl From<SuiAddress> for Address
impl From<SuiAddress> for Address
Source§fn from(value: SuiAddress) -> Self
fn from(value: SuiAddress) -> Self
Source§impl From<SuiAddress> for ObjectID
impl From<SuiAddress> for ObjectID
Source§fn from(address: SuiAddress) -> ObjectID
fn from(address: SuiAddress) -> ObjectID
Source§impl From<SuiAddress> for ObjectId
impl From<SuiAddress> for ObjectId
Source§fn from(value: SuiAddress) -> Self
fn from(value: SuiAddress) -> Self
Source§impl FromStr for SuiAddress
impl FromStr for SuiAddress
Source§impl Hash for SuiAddress
impl Hash for SuiAddress
Source§impl JsonSchema for SuiAddress
impl JsonSchema for SuiAddress
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read moreSource§impl MoveTypeTagTrait for SuiAddress
impl MoveTypeTagTrait for SuiAddress
fn get_type_tag() -> TypeTag
Source§impl Ord for SuiAddress
impl Ord for SuiAddress
Source§fn cmp(&self, other: &SuiAddress) -> Ordering
fn cmp(&self, other: &SuiAddress) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for SuiAddress
impl PartialEq for SuiAddress
Source§impl PartialOrd for SuiAddress
impl PartialOrd for SuiAddress
Source§impl Serialize for SuiAddress
impl Serialize for SuiAddress
Source§impl TryFrom<&[u8]> for SuiAddress
impl TryFrom<&[u8]> for SuiAddress
Source§impl TryFrom<&GenericSignature> for SuiAddress
impl TryFrom<&GenericSignature> for SuiAddress
Source§fn try_from(sig: &GenericSignature) -> SuiResult<Self>
fn try_from(sig: &GenericSignature) -> SuiResult<Self>
Derive a SuiAddress from a serialized signature in Sui GenericSignature.
Source§impl TryFrom<&ZkLoginAuthenticator> for SuiAddress
Sui address for [struct ZkLoginAuthenticator] is defined as the black2b hash of
[zklogin_flag || iss_bytes_length || iss_bytes || unpadded_address_seed_in_bytes].
impl TryFrom<&ZkLoginAuthenticator> for SuiAddress
Sui address for [struct ZkLoginAuthenticator] is defined as the black2b hash of [zklogin_flag || iss_bytes_length || iss_bytes || unpadded_address_seed_in_bytes].
impl Copy for SuiAddress
impl Eq for SuiAddress
impl StructuralPartialEq for SuiAddress
Auto Trait Implementations§
impl Freeze for SuiAddress
impl RefUnwindSafe for SuiAddress
impl Send for SuiAddress
impl Sync for SuiAddress
impl Unpin for SuiAddress
impl UnwindSafe for SuiAddress
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> AsBits<T> for A
impl<A, T> AsBits<T> for A
§impl<T, U> AsByteSlice<T> for U
impl<T, U> AsByteSlice<T> for U
fn as_byte_slice(&self) -> &[u8] ⓘ
§impl<U> AsSliceOf for U
impl<U> AsSliceOf for U
fn as_slice_of<T>(&self) -> Result<&[T], Error>where
T: FromByteSlice,
§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,
§impl<T> Base32Len for T
impl<T> Base32Len for T
§fn base32_len(&self) -> usize
fn base32_len(&self) -> usize
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> CallHasher for T
impl<T> CallHasher for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<T> Conv for T
impl<T> Conv for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§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.§impl<T> ToBase32 for T
impl<T> ToBase32 for T
Source§impl<T> ToHex for T
impl<T> ToHex for T
Source§fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
self
into the result. Lower case
letters are used (e.g. f9b4ca
)Source§fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
self
into the result. Upper case
letters are used (e.g. F9B4CA
)§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.