Class: MultiSigProposal
api/entities/MultiSigProposal.MultiSigProposal
A proposal for a MultiSig transaction. This is a wrapper around an extrinsic that will be executed when the amount of approvals reaches the signature threshold set on the MultiSig Account
Hierarchy
-
Entity
<UniqueIdentifiers
,HumanReadable
>↳
MultiSigProposal
Properties
id
• id: BigNumber
Defined in
api/entities/MultiSigProposal/index.ts:30
multiSig
• multiSig: MultiSig
Defined in
api/entities/MultiSigProposal/index.ts:29
uuid
• uuid: string
Inherited from
Defined in
Methods
details
▸ details(): Promise
<MultiSigProposalDetails
>
Fetches the details of the Proposal. This includes the amount of approvals and rejections, the expiry, and details of the wrapped extrinsic
Returns
Promise
<MultiSigProposalDetails
>
Defined in
api/entities/MultiSigProposal/index.ts:49
exists
▸ exists(): Promise
<boolean
>
Determines whether this Proposal exists on chain
Returns
Promise
<boolean
>
Overrides
Defined in
api/entities/MultiSigProposal/index.ts:108
isEqual
▸ isEqual(entity
): boolean
Determine whether this Entity is the same as another one
Parameters
Name | Type |
---|---|
entity | Entity <unknown , unknown > |
Returns
boolean
Inherited from
Defined in
toHuman
▸ toHuman(): HumanReadable
Returns a human readable representation
Returns
Overrides
Defined in
api/entities/MultiSigProposal/index.ts:130
generateUuid
▸ Static
generateUuid<Identifiers
>(identifiers
): string
Generate the Entity's UUID from its identifying properties
Type parameters
Name |
---|
Identifiers |
Parameters
Name | Type |
---|---|
identifiers | Identifiers |
Returns
string
Inherited from
Defined in
isUniqueIdentifiers
▸ Static
isUniqueIdentifiers(identifiers
): boolean
Typeguard that checks whether the object passed corresponds to the unique identifiers of the class. Must be overridden
Parameters
Name | Type | Description |
---|---|---|
identifiers | unknown | object to type check |
Returns
boolean
Inherited from
Defined in
unserialize
▸ Static
unserialize<Identifiers
>(serialized
): Identifiers
Unserialize a UUID into its Unique Identifiers
Type parameters
Name |
---|
Identifiers |
Parameters
Name | Type | Description |
---|---|---|
serialized | string | UUID to unserialize |
Returns
Identifiers