subscan
Runtime Modules / MultiSig
Spec Version:
Events
Name
Lookup
Attributes
MultiSigCreated0f00["IdentityId","AccountId","AccountId","BoundedVec<AccountId, MaxSigners>","u64"]
ProposalAdded0f01["Option<IdentityId>","AccountId","u64"]
ProposalExecuted0f02["Option<IdentityId>","AccountId","u64","DispatchResult"]
MultiSigSignerAdded0f03["IdentityId","AccountId","AccountId"]
MultiSigSignersAuthorized0f04["IdentityId","AccountId","BoundedVec<AccountId, MaxSigners>"]
MultiSigSignersRemoved0f05["IdentityId","AccountId","BoundedVec<AccountId, MaxSigners>"]
MultiSigSignersRequiredChanged0f06["Option<IdentityId>","AccountId","u64"]
ProposalApprovalVote0f07["Option<IdentityId>","AccountId","AccountId","u64"]
ProposalRejectionVote0f08["Option<IdentityId>","AccountId","AccountId","u64"]
ProposalApproved0f09["Option<IdentityId>","AccountId","u64"]
ProposalRejected0f0a["Option<IdentityId>","AccountId","u64"]
MultiSigAddedAdmin0f0b["IdentityId","AccountId","IdentityId"]
MultiSigRemovedAdmin0f0c["IdentityId","AccountId","IdentityId"]
MultiSigRemovedPayingDid0f0d["IdentityId","AccountId","IdentityId"]
Storage Functions
Name
Type
MultiSigNonce{"origin":"PlainType","plain_type":"U64","PlainTypeValue":10}
MultiSigSigners{"origin":"Map","n_map_type":{"hashers":["Identity","Twox64Concat"],"key_vec":["AccountId","AccountId"],"value":"Bool","keys_id":563,"value_id":78}}
NumberOfSigners{"origin":"Map","n_map_type":{"hashers":["Identity"],"key_vec":["AccountId"],"value":"U64","keys_id":0,"value_id":10}}
MultiSigSignsRequired{"origin":"Map","n_map_type":{"hashers":["Identity"],"key_vec":["AccountId"],"value":"U64","keys_id":0,"value_id":10}}
NextProposalId{"origin":"Map","n_map_type":{"hashers":["Identity"],"key_vec":["AccountId"],"value":"U64","keys_id":0,"value_id":10}}
Proposals{"origin":"Map","n_map_type":{"hashers":["Twox64Concat","Twox64Concat"],"key_vec":["AccountId","U64"],"value":"Call","keys_id":564,"value_id":376}}
Votes{"origin":"Map","n_map_type":{"hashers":["Twox64Concat","Twox64Concat"],"key_vec":["Tuple:AccountIdU64","AccountId"],"value":"Bool","keys_id":565,"value_id":78}}
PayingDid{"origin":"Map","n_map_type":{"hashers":["Identity"],"key_vec":["AccountId"],"value":"[U8; 32]","keys_id":0,"value_id":32}}
AdminDid{"origin":"Map","n_map_type":{"hashers":["Identity"],"key_vec":["AccountId"],"value":"[U8; 32]","keys_id":0,"value_id":32}}
ProposalVoteCounts{"origin":"Map","n_map_type":{"hashers":["Twox64Concat","Twox64Concat"],"key_vec":["AccountId","U64"],"value":"polymesh_primitives:multisig:ProposalVoteCount","keys_id":564,"value_id":566}}
ProposalStates{"origin":"Map","n_map_type":{"hashers":["Twox64Concat","Twox64Concat"],"key_vec":["AccountId","U64"],"value":"polymesh_primitives:multisig:ProposalState","keys_id":564,"value_id":567}}
ExecutionReentry{"origin":"PlainType","plain_type":"Bool","PlainTypeValue":78}
AuthToProposalId{"origin":"Map","n_map_type":{"hashers":["Twox64Concat","Twox64Concat"],"key_vec":["AccountId","U64"],"value":"U64","keys_id":564,"value_id":10}}
TransactionVersion{"origin":"PlainType","plain_type":"U32","PlainTypeValue":4}
LastInvalidProposal{"origin":"Map","n_map_type":{"hashers":["Identity"],"key_vec":["AccountId"],"value":"U64","keys_id":0,"value_id":10}}
StorageVersion{"origin":"PlainType","plain_type":"U8","PlainTypeValue":568}
Constants
Name
Type
Value
MaxSignersU3232000000
Error Types
Name
Docs
ProposalMissingThe proposal does not exist.
DecodingErrorMultisig address.
RequiredSignersIsZeroRequired number of signers must be greater then zero.
NotASignerNot a signer.
NoSuchMultisigNo such multisig.
NotEnoughSignersNot enough signers. The number of signers has to be greater then or equal tothe required number of signers to approve proposals.
NonceOverflowA nonce overflow.
AlreadyVotedAlready voted.
AlreadyASignerAlready a signer.
IdentityNotAdminIdentity provided is not the multisig's admin.
IdentityNotPayerIdentity provided is not the multisig's payer.
ChangeNotAllowedChanging multisig parameters not allowed since multisig is a primary key.
SignerAlreadyLinkedToMultisigSigner is an account key that is already associated with a multisig.
SignerAlreadyLinkedToIdentitySigner is an account key that is already associated with an identity.
NestingNotAllowedA multisig can't be a signer of another multisig.
ProposalAlreadyRejectedProposal was rejected earlier
ProposalExpiredProposal has expired
ProposalAlreadyExecutedProposal was executed earlier
MaxWeightTooLowMax weight not enough to execute proposal.
MultisigMissingIdentityMultisig is not attached to an identity
TooManySignersTried to add/remove too many signers.
NoPayingDidMultisig doesn't have a paying DID.
InvalidExpiryDateExpiry must be in the future.
InvalidatedProposalThe proposal has been invalidated after a multisg update.
AdminNotFoundMultisig has no admin.
BadAuthorizationTypeThe extrinsic expected a different `AuthorizationType` than what the `data.auth_type()` is.