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:
The amended call design will schedule (besides what is already scheduled for LP21 on LP20):
All of these will be scheduled until the first days of January 2023.
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!