import * as anchor from "@project-serum/anchor"; export const STRIKR_PROGRAM_ID = new anchor.web3.PublicKey( "StkiFX4GuMbWXsMtsgehbg1nyVgTvwBL2cUKVZihBMj" ); export const TOKEN_METADATA_PROGRAM_ID = new anchor.web3.PublicKey( "metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s" ); export let STRIKR_COLLECTION_MINT: anchor.web3.PublicKey; // code for Mocha test environment only if (typeof it === "function" && typeof describe === "function") { STRIKR_COLLECTION_MINT = new anchor.web3.PublicKey( "CaFz5EZWqVe42K7iM2rmr5kCG7c7m2agwwErgAFuREAY" ); } else { STRIKR_COLLECTION_MINT = new anchor.web3.PublicKey( "87hN9rw8CLMNDFEZf5m8Vgto76jxAWJbaPVEQXhDv8Jm" ); } export const STRIKR_TREASURY = new anchor.web3.PublicKey( "HgTuJfZchyXKN9Q4CVcguArMcKST3VbueWpYxfgk7AJc" );