Stub the genesis-liquidity pallet

This commit is contained in:
Luke Parker
2025-12-02 16:24:17 -05:00
parent af74c318aa
commit eb04f873d5
12 changed files with 180 additions and 479 deletions

View File

@@ -7,6 +7,10 @@ use crate::balance::Amount;
/// The value of non-Bitcoin externals coins present at genesis, relative to Bitcoin.
#[derive(Clone, Copy, PartialEq, Eq, Debug, Zeroize, BorshSerialize, BorshDeserialize)]
#[cfg_attr(
feature = "non_canonical_scale_derivations",
derive(scale::Encode, scale::Decode, scale::MaxEncodedLen, scale::DecodeWithMemTracking)
)]
pub struct GenesisValues {
/// The value of Ether, relative to Bitcoin.
pub ether: Amount,

View File

@@ -29,8 +29,8 @@ pub mod coin;
/// The `Amount`, `ExternalBalance`, and `Balance` types.
pub mod balance;
/// Types for genesis.
pub mod genesis;
/// Types for the genesis liquidity functionality.
pub mod genesis_liquidity;
/// Types for identifying networks and their properties.
pub mod network_id;