This is the DOTMog pallet which lives as its own crate so it can be imported into multiple runtimes.
This pallet acts as the main pallet for the game DOTMog.
This pallet does not depend on any externally defined traits.
This pallet does not depend on any other FRAME pallet or externally developed modules.
To add this pallet to your runtime, simply include the following to your runtime's Cargo.toml
file:
# external pallets
pallet-dotmog = {default-features = false, version = '0.1.0', git = 'https://github.com/dotmog/pallet-dotmog.git'}
and update your runtime's std
feature to include this pallet:
std = [
# --snip--
'pallet-dotmog/std',
]
You should implement it's trait like so:
parameter_types! {
pub const DotMogPalletId: PalletId = PalletId(*b"py/dtmog");
}
/// Configure the pallet dotmog in pallets/dotmog.
impl pallet_dotmog::Config for Runtime {
type PalletId = DotMogPalletId;
type Event = Event;
type Currency = Balances;
type Randomness = RandomnessCollectiveFlip;
type PricePayment = ();
}
and include it in your construct_runtime!
macro:
DotMogModule: pallet_dotmog::{Pallet, Call, Storage, Event<T>, Config<T>},
This dotmog pallet does have a genesis configuration.
use node_template_runtime::{
..., DotMogModuleConfig, ...
};
GenesisConfig {
...
pallet_dotmog: DotMogModuleConfig {
key: root_key,
},
}
{
"Address": "MultiAddress",
"AccountInfo": "AccountInfoWithDualRefCount",
"LookupSource": "MultiAddress",
"GameEventType": {
"_enum": [
"Default",
"Hatch"
]
},
"GameEvent": {
"id": "H256",
"begin": "BlockNumber",
"duration": "u16",
"event_type": "GameEventType",
"hashes": "Vec<H256>",
"value": "u64"
},
"RarityType": {
"_enum": [
"Minor",
"Normal",
"Rare",
"Epic",
"Legendary"
]
},
"MogwaiStruct": {
"id": "H256",
"dna": "H256",
"genesis": "BlockNumber",
"price": "Balance",
"gen": "u32",
"rarity": "RarityType"
},
"MogwaiBios": {
"mogwai_id": "Hash",
"state": "u32",
"metaxy": "Vec<[u8;16]>",
"intrinsic": "Balance",
"level": "u8",
"phases": "Vec<BlockNumber>",
"adaptations": "Vec<Hash>"
}
}
You can view the reference docs for this pallet by running:
cargo doc --open