Name

PalletDemocracyCall (266)

Hierarchy

  • Enum
    • PalletDemocracyCall

Properties

asBlacklist: {
    maybeRefIndex: Option<u32>;
    proposalHash: H256;
} & Struct<TypesDef<Codec>, {}, {}>
asCancelProposal: {
    propIndex: Compact<u32>;
} & Struct<TypesDef<Codec>, {}, {}>
asCancelReferendum: {
    refIndex: Compact<u32>;
} & Struct<TypesDef<Codec>, {}, {}>
asDelegate: {
    balance: u128;
    conviction: PalletDemocracyConviction;
    to: MultiAddress;
} & Struct<TypesDef<Codec>, {}, {}>
asEmergencyCancel: {
    refIndex: u32;
} & Struct<TypesDef<Codec>, {}, {}>
asExternalPropose: {
    proposal: FrameSupportPreimagesBounded;
} & Struct<TypesDef<Codec>, {}, {}>
asExternalProposeDefault: {
    proposal: FrameSupportPreimagesBounded;
} & Struct<TypesDef<Codec>, {}, {}>
asExternalProposeMajority: {
    proposal: FrameSupportPreimagesBounded;
} & Struct<TypesDef<Codec>, {}, {}>
asFastTrack: {
    delay: u64;
    proposalHash: H256;
    votingPeriod: u64;
} & Struct<TypesDef<Codec>, {}, {}>
asPropose: {
    proposal: FrameSupportPreimagesBounded;
    value: Compact<u128>;
} & Struct<TypesDef<Codec>, {}, {}>
asRemoveOtherVote: {
    index: u32;
    target: MultiAddress;
} & Struct<TypesDef<Codec>, {}, {}>
asRemoveVote: {
    index: u32;
} & Struct<TypesDef<Codec>, {}, {}>
asSecond: {
    proposal: Compact<u32>;
} & Struct<TypesDef<Codec>, {}, {}>
asSetMetadata: {
    maybeHash: Option<H256>;
    owner: PalletDemocracyMetadataOwner;
} & Struct<TypesDef<Codec>, {}, {}>
asUnlock: {
    target: MultiAddress;
} & Struct<TypesDef<Codec>, {}, {}>
asVetoExternal: {
    proposalHash: H256;
} & Struct<TypesDef<Codec>, {}, {}>
asVote: {
    refIndex: Compact<u32>;
    vote: PalletDemocracyVoteAccountVote;
} & Struct<TypesDef<Codec>, {}, {}>
isBlacklist: boolean
isCancelProposal: boolean
isCancelReferendum: boolean
isClearPublicProposals: boolean
isDelegate: boolean
isEmergencyCancel: boolean
isExternalPropose: boolean
isExternalProposeDefault: boolean
isExternalProposeMajority: boolean
isFastTrack: boolean
isPropose: boolean
isRemoveOtherVote: boolean
isRemoveVote: boolean
isSecond: boolean
isSetMetadata: boolean
isUndelegate: boolean
isUnlock: boolean
isVetoExternal: boolean
isVote: boolean
type: "Propose" | "Second" | "Vote" | "EmergencyCancel" | "ExternalPropose" | "ExternalProposeMajority" | "ExternalProposeDefault" | "FastTrack" | "VetoExternal" | "CancelReferendum" | "Delegate" | "Undelegate" | "ClearPublicProposals" | "Unlock" | "RemoveVote" | "RemoveOtherVote" | "Blacklist" | "CancelProposal" | "SetMetadata"