defios 0.1.0

Main github on-chain integrations by DefiOS
Documentation
use anchor_lang::prelude::{constant, Pubkey};
use solana_program::pubkey;

#[constant]
pub const AUTHORIZED_PUBLIC_KEY: Pubkey = pubkey!("55kBY9yxqSC42boV8PywT2gqGzgLi5MPAtifNRgPNezF");
#[constant]
pub const MAX_INT: u128 = u128::pow(2, 64) - 1;
#[constant]
pub const VOTING_END: i64 = 72 * 60 * 60;
#[constant]
pub const TRUSTED_NAME_ROUTERS: &[Pubkey] = &[AUTHORIZED_PUBLIC_KEY];
#[constant]
pub const VESTING_NUMBER: u64 = 4;
#[constant]
pub const TOKEN_VEST_AMOUNT: u64 = 2500;
#[constant]
pub const RELEASE_TIME: u64 = u64::pow(10, 6);
#[constant]
pub const DEFAULT_MINT_DECIMALS: u8 = 1;