diff --git a/js/src/main.ts b/js/src/main.ts index e74789f..bed7f6c 100644 --- a/js/src/main.ts +++ b/js/src/main.ts @@ -23,15 +23,15 @@ import bs58 from 'bs58'; * The vesting schedule program ID */ export const VESTING_PROGRAM_ID = new PublicKey( - 'BHJWdCprG1HUiCZh1jhA4mJfAiXEGJXUn4pjnZXB3fGp' + 'AKUgi92CLv6ce4d6MNHZXeKUFU2SbnAzLc77JN63EGBA' ); export const TOKEN_MINT = new PublicKey( - 'AxfBPA1yi6my7VAjqB9fqr1AgYczuuJy8tePnNUDDPpW' + 'FGG8y8JrZrAinbBwWAB2EacQgZVyzoerdMsU1LUaRkKv' ); export const DEVNET_VESTING_PROGRAM_ID = new PublicKey( - 'HGhyAuNiYRa6oN55eGGP1MYGVve7epwT8WX6qbWxgYxM' + '5UmrfVDhyotfF6Dufved4yjFPCVJdNHu22u1e6ohSyn6' ); export const DEVNET_TOKEN_MINT = new PublicKey( diff --git a/program/src/processor.rs b/program/src/processor.rs index db5b681..efef6f1 100644 --- a/program/src/processor.rs +++ b/program/src/processor.rs @@ -24,7 +24,7 @@ use crate::{ }; pub const TOKEN_MINT: Pubkey = - solana_program::pubkey!("AxfBPA1yi6my7VAjqB9fqr1AgYczuuJy8tePnNUDDPpW"); + solana_program::pubkey!("FGG8y8JrZrAinbBwWAB2EacQgZVyzoerdMsU1LUaRkKv"); pub struct Processor {}