git.delta.rocks / unique-network / refs/commits / b3a27fe827ea

difftreelog

source

pallets/balances-adapter/src/lib.rs379 Bsourcehistory
1// #![doc = include_str!("../README.md")]2#![cfg_attr(not(feature = "std"), no_std)]3#![warn(missing_docs)]45pub use pallet::*;67pub mod erc;89#[frame_support::pallet]10pub mod pallet {11	#[pallet::config]12	pub trait Config: frame_system::Config + pallet_evm_coder_substrate::Config {}13	#[pallet::pallet]14	pub struct Pallet<T>(_);1516	#[pallet::call]17	impl<T: Config> Pallet<T> {}18}