Trait pallet_bounties::pallet::Config
source · pub trait Config<I: 'static = ()>: Config + Config<I> {
type BountyDepositBase: Get<BalanceOf<Self, I>>;
type BountyDepositPayoutDelay: Get<BlockNumberFor<Self>>;
type BountyUpdatePeriod: Get<BlockNumberFor<Self>>;
type CuratorDepositMultiplier: Get<Permill>;
type CuratorDepositMax: Get<Option<BalanceOf<Self, I>>>;
type CuratorDepositMin: Get<Option<BalanceOf<Self, I>>>;
type BountyValueMinimum: Get<BalanceOf<Self, I>>;
type DataDepositPerByte: Get<BalanceOf<Self, I>>;
type RuntimeEvent: From<Event<Self, I>> + IsType<<Self as Config>::RuntimeEvent>;
type MaximumReasonLength: Get<u32>;
type WeightInfo: WeightInfo;
type ChildBountyManager: ChildBountyManager<BalanceOf<Self, I>>;
}
Expand description
Configuration trait of this pallet.
The main purpose of this trait is to act as an interface between this pallet and the runtime in which it is embedded in. A type, function, or constant in this trait is essentially left to be configured by the runtime that includes this pallet.
Consequently, a runtime that wants to include this pallet must implement this trait.
Required Associated Types§
sourcetype BountyDepositBase: Get<BalanceOf<Self, I>>
type BountyDepositBase: Get<BalanceOf<Self, I>>
The amount held on deposit for placing a bounty proposal.
sourcetype BountyDepositPayoutDelay: Get<BlockNumberFor<Self>>
type BountyDepositPayoutDelay: Get<BlockNumberFor<Self>>
The delay period for which a bounty beneficiary need to wait before claim the payout.
sourcetype BountyUpdatePeriod: Get<BlockNumberFor<Self>>
type BountyUpdatePeriod: Get<BlockNumberFor<Self>>
Bounty duration in blocks.
sourcetype CuratorDepositMultiplier: Get<Permill>
type CuratorDepositMultiplier: Get<Permill>
The curator deposit is calculated as a percentage of the curator fee.
This deposit has optional upper and lower bounds with CuratorDepositMax
and
CuratorDepositMin
.
sourcetype CuratorDepositMax: Get<Option<BalanceOf<Self, I>>>
type CuratorDepositMax: Get<Option<BalanceOf<Self, I>>>
Maximum amount of funds that should be placed in a deposit for making a proposal.
sourcetype CuratorDepositMin: Get<Option<BalanceOf<Self, I>>>
type CuratorDepositMin: Get<Option<BalanceOf<Self, I>>>
Minimum amount of funds that should be placed in a deposit for making a proposal.
sourcetype BountyValueMinimum: Get<BalanceOf<Self, I>>
type BountyValueMinimum: Get<BalanceOf<Self, I>>
Minimum value for a bounty.
sourcetype DataDepositPerByte: Get<BalanceOf<Self, I>>
type DataDepositPerByte: Get<BalanceOf<Self, I>>
The amount held on deposit per byte within the tip report reason or bounty description.
sourcetype RuntimeEvent: From<Event<Self, I>> + IsType<<Self as Config>::RuntimeEvent>
type RuntimeEvent: From<Event<Self, I>> + IsType<<Self as Config>::RuntimeEvent>
The overarching event type.
sourcetype MaximumReasonLength: Get<u32>
type MaximumReasonLength: Get<u32>
Maximum acceptable reason length.
Benchmarks depend on this value, be sure to update weights file when changing this value
sourcetype WeightInfo: WeightInfo
type WeightInfo: WeightInfo
Weight information for extrinsics in this pallet.
sourcetype ChildBountyManager: ChildBountyManager<BalanceOf<Self, I>>
type ChildBountyManager: ChildBountyManager<BalanceOf<Self, I>>
The child bounty manager.