Name

PalletDemocracyEvent (37)

Hierarchy

  • Enum
    • PalletDemocracyEvent

Properties

asBlacklisted: {
    proposalHash: H256;
} & Struct<TypesDef<Codec>, {}, {}>
asCancelled: {
    refIndex: u32;
} & Struct<TypesDef<Codec>, {}, {}>
asDelegated: {
    target: AccountId32;
    who: AccountId32;
} & Struct<TypesDef<Codec>, {}, {}>
asMetadataCleared: {
    hash_: H256;
    owner: PalletDemocracyMetadataOwner;
} & Struct<TypesDef<Codec>, {}, {}>
asMetadataSet: {
    hash_: H256;
    owner: PalletDemocracyMetadataOwner;
} & Struct<TypesDef<Codec>, {}, {}>
asMetadataTransferred: {
    hash_: H256;
    owner: PalletDemocracyMetadataOwner;
    prevOwner: PalletDemocracyMetadataOwner;
} & Struct<TypesDef<Codec>, {}, {}>
asNotPassed: {
    refIndex: u32;
} & Struct<TypesDef<Codec>, {}, {}>
asPassed: {
    refIndex: u32;
} & Struct<TypesDef<Codec>, {}, {}>
asProposalCanceled: {
    propIndex: u32;
} & Struct<TypesDef<Codec>, {}, {}>
asProposed: {
    deposit: u128;
    proposalIndex: u32;
} & Struct<TypesDef<Codec>, {}, {}>
asSeconded: {
    propIndex: u32;
    seconder: AccountId32;
} & Struct<TypesDef<Codec>, {}, {}>
asStarted: {
    refIndex: u32;
    threshold: PalletDemocracyVoteThreshold;
} & Struct<TypesDef<Codec>, {}, {}>
asTabled: {
    deposit: u128;
    proposalIndex: u32;
} & Struct<TypesDef<Codec>, {}, {}>
asUndelegated: {
    account: AccountId32;
} & Struct<TypesDef<Codec>, {}, {}>
asVetoed: {
    proposalHash: H256;
    until: u64;
    who: AccountId32;
} & Struct<TypesDef<Codec>, {}, {}>
asVoted: {
    refIndex: u32;
    vote: PalletDemocracyVoteAccountVote;
    voter: AccountId32;
} & Struct<TypesDef<Codec>, {}, {}>
isBlacklisted: boolean
isCancelled: boolean
isDelegated: boolean
isExternalTabled: boolean
isMetadataCleared: boolean
isMetadataSet: boolean
isMetadataTransferred: boolean
isNotPassed: boolean
isPassed: boolean
isProposalCanceled: boolean
isProposed: boolean
isSeconded: boolean
isStarted: boolean
isTabled: boolean
isUndelegated: boolean
isVetoed: boolean
isVoted: boolean
type: "Proposed" | "Tabled" | "ExternalTabled" | "Started" | "Passed" | "NotPassed" | "Cancelled" | "Delegated" | "Undelegated" | "Vetoed" | "Blacklisted" | "Voted" | "Seconded" | "ProposalCanceled" | "MetadataSet" | "MetadataCleared" | "MetadataTransferred"