#![cfg_attr(not(feature = "std"), no_std)]
use frame_support::{pallet_prelude::*, traits::fungible::Inspect};
use frame_system::pallet_prelude::*;
use sp_statement_store::Statement;
pub use pallet::*;
const LOG_TARGET: &str = "runtime::statement";
#[frame_support::pallet]
pub mod pallet {
use super::*;
pub type BalanceOf<T> =
<<T as Config>::Currency as Inspect<<T as frame_system::Config>::AccountId>>::Balance;
pub type AccountIdOf<T> = <T as frame_system::Config>::AccountId;
#[pallet::config]
pub trait Config: frame_system::Config
where
<Self as frame_system::Config>::AccountId: From<sp_statement_store::AccountId>,
{
#[allow(deprecated)]
type RuntimeEvent: From<Event<Self>> + IsType<<Self as frame_system::Config>::RuntimeEvent>;
type Currency: Inspect<Self::AccountId>;
#[pallet::constant]
type StatementCost: Get<BalanceOf<Self>>;
#[pallet::constant]
type ByteCost: Get<BalanceOf<Self>>;
#[pallet::constant]
type MinAllowedStatements: Get<u32>;
#[pallet::constant]
type MaxAllowedStatements: Get<u32>;
#[pallet::constant]
type MinAllowedBytes: Get<u32>;
#[pallet::constant]
type MaxAllowedBytes: Get<u32>;
}
#[pallet::pallet]
pub struct Pallet<T>(core::marker::PhantomData<T>);
#[pallet::event]
#[pallet::generate_deposit(pub(super) fn deposit_event)]
pub enum Event<T: Config>
where
<T as frame_system::Config>::AccountId: From<sp_statement_store::AccountId>,
{
NewStatement { account: T::AccountId, statement: Statement },
}
#[pallet::hooks]
impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T>
where
<T as frame_system::Config>::AccountId: From<sp_statement_store::AccountId>,
sp_statement_store::AccountId: From<<T as frame_system::Config>::AccountId>,
<T as frame_system::Config>::RuntimeEvent: From<pallet::Event<T>>,
<T as frame_system::Config>::RuntimeEvent: TryInto<pallet::Event<T>>,
sp_statement_store::BlockHash: From<<T as frame_system::Config>::Hash>,
{
fn offchain_worker(now: BlockNumberFor<T>) {
log::trace!(target: LOG_TARGET, "Collecting statements at #{:?}", now);
Pallet::<T>::collect_statements();
}
}
}
impl<T: Config> Pallet<T>
where
<T as frame_system::Config>::AccountId: From<sp_statement_store::AccountId>,
sp_statement_store::AccountId: From<<T as frame_system::Config>::AccountId>,
<T as frame_system::Config>::RuntimeEvent: From<pallet::Event<T>>,
<T as frame_system::Config>::RuntimeEvent: TryInto<pallet::Event<T>>,
sp_statement_store::BlockHash: From<<T as frame_system::Config>::Hash>,
{
pub fn submit_statement(account: T::AccountId, statement: Statement) {
Self::deposit_event(Event::NewStatement { account, statement });
}
fn collect_statements() {
for event in frame_system::Pallet::<T>::read_events_no_consensus() {
if let Ok(Event::<T>::NewStatement { account: _, statement }) = event.event.try_into() {
sp_statement_store::runtime_api::statement_store::submit_statement(statement);
}
}
}
}