mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 12:49:23 +00:00
* add specific network/coin/balance types * misc fixes * fix clippy * misc fixes * fix pr comments * Make halting for external networks * fix encode/decode
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: ExternalNetworkId,
|
|
removed_participants: BoundedVec<SeraiAddress, ConstU32<{ MAX_KEY_SHARES_PER_SET / 3 }>>,
|
|
key_pair: KeyPair,
|
|
signature: Signature,
|
|
},
|
|
report_slashes {
|
|
network: ExternalNetworkId,
|
|
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: ExternalValidatorSet,
|
|
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,
|
|
},
|
|
}
|