Skip to content

Commit

Permalink
launch: add missed validators as stage 30
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianFranzen committed Feb 26, 2025
1 parent 444f532 commit 2080946
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions pallets/launch/src/data/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Include data files here
pub mod v28;
pub mod v29;
pub mod v30;
7 changes: 7 additions & 0 deletions pallets/launch/src/data/v30.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
use crate::airdrops::RawAirdropMintStage;

use time_primitives::ANLOG;

pub const AIRDROPS_VALIDATORS_MISSED: RawAirdropMintStage = &[
("an8ZYQStoJTWVqnmnsuSQwzugcxdUX9vBVSdzuCRE9LydDW9U", 160_086 * ANLOG, None),
];
2 changes: 2 additions & 0 deletions pallets/launch/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ pub mod pallet {
),
// Airdrop Move 3
(29, Allocation::Airdrop, 0, Stage::AirdropTransfer(data::v29::AIRDROP_MOVE_3)),
// Validator Airdrop (missed)
(30, Allocation::Ecosystem, 160_086 * ANLOG, Stage::AirdropFromUnlocked(data::v30::AIRDROPS_VALIDATORS_MISSED))
];

/// TODO: Difference that was actually minted for airdrops:
Expand Down

0 comments on commit 2080946

Please sign in to comment.