Type Alias BountiesEvent

BountiesEvent: Enum<
    {
        BountyApproved: { index: number };
        BountyAwarded: { beneficiary: SS58String; index: number };
        BountyBecameActive: { index: number };
        BountyCanceled: { index: number };
        BountyClaimed: { beneficiary: SS58String; index: number; payout: bigint };
        BountyExtended: { index: number };
        BountyProposed: { index: number };
        BountyRejected: { bond: bigint; index: number };
        CuratorAccepted: { bounty_id: number; curator: SS58String };
        CuratorProposed: { bounty_id: number; curator: SS58String };
        CuratorUnassigned: { bounty_id: number };
    },
>