Skip to content

Commit

Permalink
fix: replace mint for squads
Browse files Browse the repository at this point in the history
  • Loading branch information
wei3erHase committed Oct 8, 2024
1 parent 4940cda commit 9cfbf71
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(
'CivjW7ZGp7eaubEdGoDeVsTrYYRnyTf5mrp9pET7KFuk'
'B3SgiwWbGQPiMVB3EcpPF3gyhocA4XRgxFRfjhk84ms5'
);

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!("CivjW7ZGp7eaubEdGoDeVsTrYYRnyTf5mrp9pET7KFuk");
solana_program::pubkey!("B3SgiwWbGQPiMVB3EcpPF3gyhocA4XRgxFRfjhk84ms5");

pub struct Processor {}

Expand Down

0 comments on commit 9cfbf71

Please sign in to comment.