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;
};
}>
Type declaration
BountyApproved: {
index: number;
}
BountyAwarded: {
beneficiary: SS58String;
index: number;
}
beneficiary: SS58String
index: number
BountyBecameActive: {
index: number;
}
BountyCanceled: {
index: number;
}
BountyClaimed: {
beneficiary: SS58String;
index: number;
payout: bigint;
}
beneficiary: SS58String
index: number
payout: bigint
BountyExtended: {
index: number;
}
BountyProposed: {
index: number;
}
BountyRejected: {
bond: bigint;
index: number;
}
bond: bigint
index: number
CuratorAccepted: {
bounty_id: number;
curator: SS58String;
}
bounty_id: number
curator: SS58String
CuratorProposed: {
bounty_id: number;
curator: SS58String;
}
bounty_id: number
curator: SS58String
CuratorUnassigned: {
bounty_id: number;
}
A bounty is approved.