Skip to content

Commit

Permalink
fix: replace mainnet token (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
wei3erHase authored Oct 8, 2024
1 parent 8420c98 commit 37c5f80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions js/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ import bs58 from 'bs58';
* The vesting schedule program ID
*/
export const VESTING_PROGRAM_ID = new PublicKey(
'AKUgi92CLv6ce4d6MNHZXeKUFU2SbnAzLc77JN63EGBA'
'HE6bCtjsrra8DRbJnexKoVPSr5dYs57s3cuGHfotiQbq'
);

export const TOKEN_MINT = new PublicKey(
'FGG8y8JrZrAinbBwWAB2EacQgZVyzoerdMsU1LUaRkKv'
'5k84VjAKoGPXa7ias1BNgKUrX7e61eMPWhZDqsiD4Bpe'
);

export const DEVNET_VESTING_PROGRAM_ID = new PublicKey(
Expand Down
2 changes: 1 addition & 1 deletion program/src/processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use crate::{
};

pub const TOKEN_MINT: Pubkey =
solana_program::pubkey!("FGG8y8JrZrAinbBwWAB2EacQgZVyzoerdMsU1LUaRkKv");
solana_program::pubkey!("5k84VjAKoGPXa7ias1BNgKUrX7e61eMPWhZDqsiD4Bpe");

pub struct Processor {}

Expand Down

0 comments on commit 37c5f80

Please sign in to comment.