Type Alias ChildBountiesEvent

ChildBountiesEvent: Enum<{
    Added: {
        child_index: number;
        index: number;
    };
    Awarded: {
        beneficiary: SS58String;
        child_index: number;
        index: number;
    };
    Canceled: {
        child_index: number;
        index: number;
    };
    Claimed: {
        beneficiary: SS58String;
        child_index: number;
        index: number;
        payout: bigint;
    };
}>

Type declaration

  • Added: {
        child_index: number;
        index: number;
    }

    A child-bounty is added.

    • child_index: number
    • index: number
  • Awarded: {
        beneficiary: SS58String;
        child_index: number;
        index: number;
    }

    A child-bounty is awarded to a beneficiary.

    • beneficiary: SS58String
    • child_index: number
    • index: number
  • Canceled: {
        child_index: number;
        index: number;
    }

    A child-bounty is cancelled.

    • child_index: number
    • index: number
  • Claimed: {
        beneficiary: SS58String;
        child_index: number;
        index: number;
        payout: bigint;
    }

    A child-bounty is claimed by beneficiary.

    • beneficiary: SS58String
    • child_index: number
    • index: number
    • payout: bigint