1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! *Feature flag: `snip20-impl`*
//! Customizable implementation of a SNIP-20 token.

pub mod msg;
pub mod receiver;
pub mod state;
pub mod batch;
pub mod transaction_history;

mod snip20; pub use snip20::*;
mod utils;

#[cfg(test)] mod tests;

/// Implements SNIP20, SNIP21 and SNIP22.
pub struct DefaultSnip20Impl;

impl Snip20 for DefaultSnip20Impl { }