Back to motions
Executed
#438 Kusama 2022 Parachain Auctions - Next Schedules on Kusama Network
Proposer:
GLVe...F7wj
in Council
18th Feb '22
Description
AI Summary
Timeline
Evaluation
On Chain Info
Quote
Share
Copy
Based on the feedback received from various teams and on this discussion post, motion 438 aims to vote an amended version of the call design. The changes are:
- We leave what is scheduled in LP20 for LP21 (currently on dispatch queue with Id: Auctlp21);
- We delete the replacement on the proposed design above for the batch Id Auctlp21: since we are leaving the original one;
- We delete the 2 extra calls on LP21 for LP21: leaving 5 auctions for LP21 instead of 8. The reasoning behind this is a. teams that need to renew will be able to do so, b. renewals are not needed on every upcoming LP, c. allow projects to catch up on development.
The amended call design will schedule (besides what is already scheduled for LP21 on LP20):
- 6 auctions on LP21 for LP22
- 6 auctions on LP22 for LP23
- 5 auctions on LP23: 2 for LP23 and 3 for LP24
- 6 auctions on LP24: 3 for LP24 and 3 for LP25
- 6 auctions on LP25: 3 for LP25 and 3 for LP26
- 3 auctions for LP26, to onboard on LP26
All of these will be scheduled until the first days of January 2023.
Call Design:
utility.batch(
calls: [
// 6 auctions for LP22 on LP21
// LP21 starts on block 12,700,800, estimated 15 May 2022
scheduler.schedule_named(
id: 'auctlp22',
when: 12_700_800,
maybe_periodic: (100_800, 6),
priority: 0,
call: auctions.new_auction(
duration: 27_000,
lease_period_index: 22
)
),
// 6 auctions for LP23 on LP22
// LP22 starts on block 13,305,600, estimated 26 June 2022
scheduler.schedule_named(
id: 'auctlp23',
when: 13_305_600,
maybe_periodic: (100_800, 6),
priority: 0,
call: auctions.new_auction(
duration: 27_000,
lease_period_index: 23
)
),
// 2 auctions for LP23 on LP23
// LP23 starts on block 13,910,400, estimated 07 Aug 2022
scheduler.schedule_named(
id: 'auctlp23.1,
when: 13_910_400,
maybe_periodic: (100_800, 2),
priority: 0,
call: auctions.new_auction(
duration: 27_000,
lease_period_index: 23
)
),
// 3 auctions for LP24 on LP23
// LP24 starts on block 14,515,200, estimated 18 Sept 2022
scheduler.schedule_named(
id: 'auctlp24,
when: 14_112_001,
maybe_periodic: (100_800, 3),
priority: 0,
call: auctions.new_auction(
duration: 27_000,
lease_period_index: 24
)
),
// 3 auctions for LP24 on LP24
// LP24 starts on block 14,515,200, estimated 18 Sept 2022
scheduler.schedule_named(
id: 'auctlp24.1’,
when: 14_515_200,
maybe_periodic: (100_800, 3),
priority: 0,
call: auctions.new_auction(
duration: 27_000,
lease_period_index: 24
)
),
// 3 auctions for LP25 on LP24
// LP25 starts on block 15,120,000, estimated 30 Oct 2022
scheduler.schedule_named(
id: 'auctlp25’,
when: 14_817_600,
maybe_periodic: (100_800, 3),
priority: 0,
call: auctions.new_auction(
duration: 27_000,
lease_period_index: 25
)
),
// 3 auctions for LP25 on LP25
// LP25 starts on block 15,120,000, estimated 30 Oct 2022
scheduler.schedule_named(
id: 'auctlp25.1’,
when: 15_120_000,
maybe_periodic: (100_800, 3),
priority: 0,
call: auctions.new_auction(
duration: 27_000,
lease_period_index: 25
)
),
// 3 auctions for LP26 on LP25
// LP26 starts on block 15,724,800, estimated 11 Dec 2022
scheduler.schedule_named(
id: 'auctlp26’,
when: 15_422_400,
maybe_periodic: (100_800, 3),
priority: 0,
call: auctions.new_auction(
duration: 27_000,
lease_period_index: 26
)
),
// 3 auctions for LP26 on LP26
// LP26 starts on block 15,724,800, estimated 11 Dec 2022
scheduler.schedule_named(
id: 'auctlp26.1’,
when: 15_724_800,
maybe_periodic: (100_800, 3),
priority: 0,
call: auctions.new_auction(
duration: 27_000,
lease_period_index: 26
)
),
]
)
Please vote at your convenience!
Show More
Please Log In to comment
Discover similar proposals