Skip to content

Commit 85e37e0

Browse files
muharembkchrggwpez
authored
Fellowship Salary Budget & Period (polkadot-fellows#121)
Fellowship Salary Budget & Period In alignment with the Fellowship Salary [RFC](polkadot-fellows/RFCs#50), the projected total monthly budget stands at 240,833 USDt. With this PR, I invite the Fellowship members to refine the following constant parameters: - RegistrationPeriod - # of blocks within a cycle which accounts have to register their intent to claim. - PayoutPeriod - # of blocks within a cycle which accounts have to claim the payout. - Budget - the total budget per cycle. Please be aware that the pallet does not have a visibility into the actual balance of the account holding the salary budget. If this account lacks sufficient assets, subsequent salary claims will encounter failures. --------- Co-authored-by: Bastian Köcher <[email protected]> Co-authored-by: Oliver Tale-Yazdi <[email protected]>
1 parent 48ccfae commit 85e37e0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1414
- Election provider: use a geometric deposit base calculation for EPM signed submissions in Polkadot and Kusama ([polkadot-fellows/runtimes#56](https://github.com/polkadot-fellows/runtimes/pull/56))
1515
- Make `IdentityInfo` generic in `pallet-identity` ([polkadot-fellows/runtimes#87](https://github.com/polkadot-fellows/runtimes/pull/87)). Context: https://github.com/paritytech/polkadot-sdk/pull/1661
1616
- Whitelist `force_default_xcm_version` in XCM call filter ([polkadot-fellows/runtimes#45](https://github.com/polkadot-fellows/runtimes/pull/45))
17+
- Update the fellowship salary budget amount in alignment with the Fellowship Salary [RFC](https://github.com/polkadot-fellows/RFCs/pull/50) ([polkadot-fellows/runtimes#121](https://github.com/polkadot-fellows/runtimes/pull/121))
1718
- Set up an account ID for the local root location on Polkadot Collectives ([polkadot-fellows/runtimes#125](https://github.com/polkadot-fellows/runtimes/pull/125))
1819
- Increase confirmation period for treasury spend tracks on Polkadot & Kusama ([polkadot-fellows/runtimes#119](https://github.com/polkadot-fellows/runtimes/pull/119))
1920

system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ impl pallet_salary::Config<FellowshipSalaryInstance> for Runtime {
249249
// 15 days to claim the salary payment.
250250
type PayoutPeriod = ConstU32<{ 15 * DAYS }>;
251251
// Total monthly salary budget.
252-
type Budget = ConstU128<{ 100_000 * USDT_UNITS }>;
252+
type Budget = ConstU128<{ 250_000 * USDT_UNITS }>;
253253
}
254254

255255
parameter_types! {

0 commit comments

Comments
 (0)