pallet-dotchip

Crates.iopallet-dotchip
lib.rspallet-dotchip
version1.0.2
sourcesrc
created_at2021-03-26 02:01:59.49401
updated_at2021-04-01 04:05:19.045841
descriptionchip money pallet for polkadot games
homepagehttps://github.com/xtony77/pallet-dotchip
repositoryhttps://github.com/xtony77/pallet-dotchip
max_upload_size
id373627
size11,927
(xtony77)

documentation

README

pallet-dotchip

chip money pallet for polkadot games

Getting Started

Importing a Pallet Crate

runtime/Cargo.toml

[dependencies]
...
// Add this code
pallet-dotchip = { default-features = false, version = '1.0.0' }

[features]
default = ['std']
runtime-benchmarks = [
    ...
]
std = [
    ...
    // Add this code
    'pallet-dotchip/std'
]

Configure the Pallet

runtime/src/lib.rs

// Add this code
impl pallet-dotchip::Config for Runtime {
	type Event = Event;
	type Currency = Balances;
}

construct_runtime!(
	pub enum Runtime where
		Block = Block,
		NodeBlock = opaque::Block,
		UncheckedExtrinsic = UncheckedExtrinsic
	{
        ...
        // Add this code
        DotChip: pallet-dotchip::{Module, Call, Storage, Event<T>},
	}
);

Test Pallet

cargo test
Commit count: 5

cargo fmt