mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-10 21:19:24 +00:00
We prior required they had the same encoding, yet this ensures they do by making them one and the same. This does require an large, ugly, From/TryInto block which is deemed preferable for moving this more and more into syntax (from semantics). Further improvements (notably re: Extra) is possible, and this already lets us strip some members from the Call enum.
76 lines
1.9 KiB
Rust
76 lines
1.9 KiB
Rust
use sp_core::{ConstU32, bounded::BoundedVec};
|
|
|
|
pub use serai_validator_sets_primitives as primitives;
|
|
|
|
use serai_primitives::*;
|
|
use serai_validator_sets_primitives::*;
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, scale::Encode, scale::Decode, scale_info::TypeInfo)]
|
|
#[cfg_attr(feature = "serde", derive(serde::Serialize))]
|
|
#[cfg_attr(all(feature = "std", feature = "serde"), derive(serde::Deserialize))]
|
|
pub enum Call {
|
|
set_keys {
|
|
network: NetworkId,
|
|
removed_participants: BoundedVec<SeraiAddress, ConstU32<{ MAX_KEY_SHARES_PER_SET / 3 }>>,
|
|
key_pair: KeyPair,
|
|
signature: Signature,
|
|
},
|
|
report_slashes {
|
|
network: NetworkId,
|
|
slashes: BoundedVec<(SeraiAddress, u32), ConstU32<{ MAX_KEY_SHARES_PER_SET / 3 }>>,
|
|
signature: Signature,
|
|
},
|
|
allocate {
|
|
network: NetworkId,
|
|
amount: Amount,
|
|
},
|
|
deallocate {
|
|
network: NetworkId,
|
|
amount: Amount,
|
|
},
|
|
claim_deallocation {
|
|
network: NetworkId,
|
|
session: Session,
|
|
},
|
|
}
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, scale::Encode, scale::Decode, scale_info::TypeInfo)]
|
|
#[cfg_attr(feature = "borsh", derive(borsh::BorshSerialize, borsh::BorshDeserialize))]
|
|
#[cfg_attr(feature = "serde", derive(serde::Serialize))]
|
|
#[cfg_attr(all(feature = "std", feature = "serde"), derive(serde::Deserialize))]
|
|
pub enum Event {
|
|
NewSet {
|
|
set: ValidatorSet,
|
|
},
|
|
ParticipantRemoved {
|
|
set: ValidatorSet,
|
|
removed: SeraiAddress,
|
|
},
|
|
KeyGen {
|
|
set: ValidatorSet,
|
|
key_pair: KeyPair,
|
|
},
|
|
AcceptedHandover {
|
|
set: ValidatorSet,
|
|
},
|
|
SetRetired {
|
|
set: ValidatorSet,
|
|
},
|
|
AllocationIncreased {
|
|
validator: SeraiAddress,
|
|
network: NetworkId,
|
|
amount: Amount,
|
|
},
|
|
AllocationDecreased {
|
|
validator: SeraiAddress,
|
|
network: NetworkId,
|
|
amount: Amount,
|
|
delayed_until: Option<Session>,
|
|
},
|
|
DeallocationClaimed {
|
|
validator: SeraiAddress,
|
|
network: NetworkId,
|
|
session: Session,
|
|
},
|
|
}
|