quarry-mint-wrapper 5.2.0

Mints tokens to authorized accounts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Macros.

#[macro_export]
macro_rules! gen_wrapper_signer_seeds {
    ($wrapper:expr) => {
        &[
            b"MintWrapper" as &[u8],
            &$wrapper.base.to_bytes(),
            &[$wrapper.bump],
        ]
    };
}