Skip to content

Commit

Permalink
refactor(solana): changes ids into the localnet ones
Browse files Browse the repository at this point in the history
  • Loading branch information
allemanfredi committed Jan 8, 2025
1 parent fbcb2e8 commit b8aebe7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/solana/Anchor.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resolution = true
skip-lint = false

[programs.localnet]
snapshotter = "37298hWBczA1od9ytwgSYyhP42WLNiXieAVCxBxAeX9S"
snapshotter = "2ne3SGxug1mVKoPzfurreh8ZEfEx96fHnz4uvQyP2Nr4"
adapter = "4v78nFouRCT7q29cGUoUxeTrwLufsYETH6TFqdiFBonT"
debridge-reporter = "DkJFdedMeprFUzymuZpvXCTqcUt1zc8uz45UgajsKbWH"
hashi = "E5d22pcTFz6YbiNDBxyxQ6kHYdT3qHh4gkxDFTm48FQ"
Expand Down
2 changes: 1 addition & 1 deletion packages/solana/programs/adapter/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use anchor_lang::prelude::*;

declare_id!("EUDyxkHVf9NBRTREn69rcFDAEefmHj3UrLJV14vnqACp");
declare_id!("4v78nFouRCT7q29cGUoUxeTrwLufsYETH6TFqdiFBonT");

pub mod contexts;
pub mod state;
Expand Down
2 changes: 1 addition & 1 deletion packages/solana/programs/hashi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::collections::HashMap;

use adapter::HashAccount;

declare_id!("76cEKq1qRhBLn56kZdG1Hj7UHXggcNfinbnKejXDnMpU");
declare_id!("E5d22pcTFz6YbiNDBxyxQ6kHYdT3qHh4gkxDFTm48FQ");

pub mod contexts;
pub mod error;
Expand Down
2 changes: 1 addition & 1 deletion packages/solana/programs/snapshotter/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use anchor_lang::prelude::*;
use anchor_lang::solana_program::hash::{hashv, Hash};

declare_id!("37298hWBczA1od9ytwgSYyhP42WLNiXieAVCxBxAeX9S");
declare_id!("2ne3SGxug1mVKoPzfurreh8ZEfEx96fHnz4uvQyP2Nr4");

pub mod contexts;
pub mod error;
Expand Down

0 comments on commit b8aebe7

Please sign in to comment.