mint-proxy 1.1.2

Manages the minting of new Saber tokens.
Documentation
1
2
3
4
5
6
7
8
9
use anchor_lang::solana_program::pubkey::Pubkey;

pub fn gen_signer_seeds<'a>(nonce: &'a u8, state_associated_account: &'a Pubkey) -> [&'a [u8]; 3] {
    [
        b"SaberMintProxy",
        state_associated_account.as_ref(),
        bytemuck::bytes_of(nonce),
    ]
}