Name

PalletCollectiveCall (270)

Hierarchy

  • Enum
    • PalletCollectiveCall

Properties

asClose: {
    index: Compact<u32>;
    lengthBound: Compact<u32>;
    proposalHash: H256;
    proposalWeightBound: SpWeightsWeightV2Weight;
} & Struct<TypesDef<Codec>, {}, {}>
asDisapproveProposal: {
    proposalHash: H256;
} & Struct<TypesDef<Codec>, {}, {}>
asExecute: {
    lengthBound: Compact<u32>;
    proposal: Call;
} & Struct<TypesDef<Codec>, {}, {}>
asPropose: {
    lengthBound: Compact<u32>;
    proposal: Call;
    threshold: Compact<u32>;
} & Struct<TypesDef<Codec>, {}, {}>
asSetMembers: {
    newMembers: Vec<AccountId32>;
    oldCount: u32;
    prime: Option<AccountId32>;
} & Struct<TypesDef<Codec>, {}, {}>
asVote: {
    approve: bool;
    index: Compact<u32>;
    proposal: H256;
} & Struct<TypesDef<Codec>, {}, {}>
isClose: boolean
isDisapproveProposal: boolean
isExecute: boolean
isPropose: boolean
isSetMembers: boolean
isVote: boolean
type: "Propose" | "Vote" | "SetMembers" | "Execute" | "DisapproveProposal" | "Close"