Skip to content

Commit

Permalink
fix: replace mainnet token
Browse files Browse the repository at this point in the history
  • Loading branch information
wei3erHase committed Oct 7, 2024
1 parent 8420c98 commit 8d790bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const VESTING_PROGRAM_ID = new PublicKey(
);

export const TOKEN_MINT = new PublicKey(
'FGG8y8JrZrAinbBwWAB2EacQgZVyzoerdMsU1LUaRkKv'
'2ummN5q6x8iQid7BFcRp7oMgF3UMEXR8LrUSPYzuMHQH'
);

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!("2ummN5q6x8iQid7BFcRp7oMgF3UMEXR8LrUSPYzuMHQH");

pub struct Processor {}

Expand Down

0 comments on commit 8d790bf

Please sign in to comment.