#![cfg_attr(not(feature = "std"), no_std)]
#[cfg(not(feature = "std"))]
extern crate alloc;
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
use codec::{Decode, Encode};
#[cfg(feature = "std")]
use sp_inherents::{Error, InherentData};
use sp_inherents::{InherentIdentifier, IsFatalError};
pub const INHERENT_IDENTIFIER: InherentIdentifier = *b"dmnsudo_";
#[derive(Debug, Encode)]
#[cfg_attr(feature = "std", derive(Decode))]
pub enum InherentError {
MissingRuntimeCall,
InvalidRuntimeCall,
IncorrectRuntimeCall,
}
impl IsFatalError for InherentError {
fn is_fatal_error(&self) -> bool {
true
}
}
#[derive(Debug, Encode, Decode)]
pub struct InherentType {
pub maybe_call: Option<Vec<u8>>,
}
#[cfg(feature = "std")]
pub struct InherentDataProvider {
data: InherentType,
}
#[cfg(feature = "std")]
impl InherentDataProvider {
pub fn new(maybe_call: Option<Vec<u8>>) -> Self {
Self {
data: InherentType { maybe_call },
}
}
pub fn data(&self) -> &InherentType {
&self.data
}
}
#[cfg(feature = "std")]
#[async_trait::async_trait]
impl sp_inherents::InherentDataProvider for InherentDataProvider {
async fn provide_inherent_data(&self, inherent_data: &mut InherentData) -> Result<(), Error> {
inherent_data.put_data(INHERENT_IDENTIFIER, &self.data)
}
async fn try_handle_error(
&self,
identifier: &InherentIdentifier,
error: &[u8],
) -> Option<Result<(), Error>> {
if *identifier != INHERENT_IDENTIFIER {
return None;
}
let error = InherentError::decode(&mut &*error).ok()?;
Some(Err(Error::Application(Box::from(format!("{error:?}")))))
}
}
pub trait IntoRuntimeCall<RuntimeCall> {
fn runtime_call(call: Vec<u8>) -> RuntimeCall;
}
sp_api::decl_runtime_apis! {
pub trait DomainSudoApi {
fn is_valid_sudo_call(extrinsic: Vec<u8>) -> bool;
fn construct_domain_sudo_extrinsic(inner: Vec<u8>) -> Block::Extrinsic;
}
}