Struct polymesh_api::polymesh::api::multi_sig::MultiSigPagedQueryApi
source · pub struct MultiSigPagedQueryApi<'api> { /* private fields */ }
Implementations§
source§impl<'api> MultiSigPagedQueryApi<'api>
impl<'api> MultiSigPagedQueryApi<'api>
sourcepub fn multi_sig_signers(
&self,
key_0: AccountId
) -> StoragePaged<Signatory<AccountId>, bool>
pub fn multi_sig_signers( &self, key_0: AccountId ) -> StoragePaged<Signatory<AccountId>, bool>
Signers of a multisig. (multisig, signer) => bool.
sourcepub fn number_of_signers(&self) -> StoragePaged<AccountId, u64>
pub fn number_of_signers(&self) -> StoragePaged<AccountId, u64>
Number of approved/accepted signers of a multisig.
sourcepub fn multi_sig_signs_required(&self) -> StoragePaged<AccountId, u64>
pub fn multi_sig_signs_required(&self) -> StoragePaged<AccountId, u64>
Confirmations required before processing a multisig tx.
sourcepub fn multi_sig_tx_done(&self) -> StoragePaged<AccountId, u64>
pub fn multi_sig_tx_done(&self) -> StoragePaged<AccountId, u64>
Number of transactions proposed in a multisig. Used as tx id; starts from 0.
sourcepub fn proposals(&self) -> StoragePaged<(AccountId, u64), RuntimeCall>
pub fn proposals(&self) -> StoragePaged<(AccountId, u64), RuntimeCall>
Proposals presented for voting to a multisig (multisig, proposal id) => Option<T::Proposal>.
sourcepub fn proposal_ids(&self, key_0: AccountId) -> StoragePaged<RuntimeCall, u64>
pub fn proposal_ids(&self, key_0: AccountId) -> StoragePaged<RuntimeCall, u64>
A mapping of proposals to their IDs.
sourcepub fn votes(
&self
) -> StoragePaged<(AccountId, Signatory<AccountId>, u64), bool>
pub fn votes( &self ) -> StoragePaged<(AccountId, Signatory<AccountId>, u64), bool>
Individual multisig signer votes. (multi sig, signer, proposal) => vote.
sourcepub fn multi_sig_to_identity(&self) -> StoragePaged<AccountId, IdentityId>
pub fn multi_sig_to_identity(&self) -> StoragePaged<AccountId, IdentityId>
Maps a multisig account to its identity.
sourcepub fn proposal_detail(
&self
) -> StoragePaged<(AccountId, u64), ProposalDetails<u64>>
pub fn proposal_detail( &self ) -> StoragePaged<(AccountId, u64), ProposalDetails<u64>>
Details of a multisig proposal
sourcepub fn lost_creator_privileges(&self) -> StoragePaged<IdentityId, bool>
pub fn lost_creator_privileges(&self) -> StoragePaged<IdentityId, bool>
Tracks creators who are no longer allowed to call via_creator extrinsics.
Trait Implementations§
source§impl<'api> Clone for MultiSigPagedQueryApi<'api>
impl<'api> Clone for MultiSigPagedQueryApi<'api>
source§fn clone(&self) -> MultiSigPagedQueryApi<'api>
fn clone(&self) -> MultiSigPagedQueryApi<'api>
Returns a copy 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<'api> !RefUnwindSafe for MultiSigPagedQueryApi<'api>
impl<'api> Send for MultiSigPagedQueryApi<'api>
impl<'api> Sync for MultiSigPagedQueryApi<'api>
impl<'api> Unpin for MultiSigPagedQueryApi<'api>
impl<'api> !UnwindSafe for MultiSigPagedQueryApi<'api>
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
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
§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, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read more§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.