102030405060708090100110120130140150160170180190200102030405060708090100110120130140150160170180190200cm102030405060708090100110120130140150160170180190200102030405060708090100110120130140150160170180190200cm
2022 Wizard

2022
Wizard

Anchor Program Generator

Generate secure, production-ready Token-2022 programs from audited building blocks.

Start Wizard
lib.rs
Base Mint
use anchor_lang::prelude::*;
 
declare_id!("Wizard22...");
 
#[program]
pub mod token_wizard {
use super::*;
 
pub fn initialize_mint(
ctx: Context<InitializeMint>,
name: String,
symbol: String,
decimals: u8,
) -> Result<()> {
msg!("Creating token: {}", name);
Ok(())
}
}