Skip to content

Commit

Permalink
chore(solana): changes again ids
Browse files Browse the repository at this point in the history
  • Loading branch information
allemanfredi committed Jan 8, 2025
1 parent b8aebe7 commit d24dc97
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions packages/solana/Anchor.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ resolution = true
skip-lint = false

[programs.localnet]
snapshotter = "2ne3SGxug1mVKoPzfurreh8ZEfEx96fHnz4uvQyP2Nr4"
adapter = "4v78nFouRCT7q29cGUoUxeTrwLufsYETH6TFqdiFBonT"
debridge-reporter = "DkJFdedMeprFUzymuZpvXCTqcUt1zc8uz45UgajsKbWH"
hashi = "E5d22pcTFz6YbiNDBxyxQ6kHYdT3qHh4gkxDFTm48FQ"
wormhole-reporter = "48Vq4rpj7tiZKvpVkzmR5kHUTLy6KdL1c4zkFw17cNZw"
snapshotter = "DbSgaTonU4UeQnZNKmKFM5odd5SUk9EVb1QRhyt2L42M"
adapter = "Bwf5buDZR4YNskrNsohJ3PenxU8SpN7Sn7T6Ko4RWorb"
debridge-reporter = "JD61fx69iJgRNpomwGKD7YVDwDrmFZAUQmGyRoeBSTw3"
hashi = "Bi6Py3p5L3tVh9digUw8jZQHukxoJmWR8KPEvVUCQEXN"
wormhole-reporter = "76SCe1KQo2317svSnu8sRwLdEFugxT399syVU8zJrCre"

[registry]
url = "https://api.apr.dev"
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!("4v78nFouRCT7q29cGUoUxeTrwLufsYETH6TFqdiFBonT");
declare_id!("Bwf5buDZR4YNskrNsohJ3PenxU8SpN7Sn7T6Ko4RWorb");

pub mod contexts;
pub mod state;
Expand Down
2 changes: 1 addition & 1 deletion packages/solana/programs/debridge-reporter/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use anchor_lang::prelude::*;

declare_id!("DkJFdedMeprFUzymuZpvXCTqcUt1zc8uz45UgajsKbWH");
declare_id!("JD61fx69iJgRNpomwGKD7YVDwDrmFZAUQmGyRoeBSTw3");

pub mod contexts;
pub mod error;
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!("E5d22pcTFz6YbiNDBxyxQ6kHYdT3qHh4gkxDFTm48FQ");
declare_id!("Bi6Py3p5L3tVh9digUw8jZQHukxoJmWR8KPEvVUCQEXN");

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!("2ne3SGxug1mVKoPzfurreh8ZEfEx96fHnz4uvQyP2Nr4");
declare_id!("DbSgaTonU4UeQnZNKmKFM5odd5SUk9EVb1QRhyt2L42M");

pub mod contexts;
pub mod error;
Expand Down
2 changes: 1 addition & 1 deletion packages/solana/programs/wormhole-reporter/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub use contexts::*;
pub use error::ErrorCode;
pub use state::*;

declare_id!("48Vq4rpj7tiZKvpVkzmR5kHUTLy6KdL1c4zkFw17cNZw");
declare_id!("76SCe1KQo2317svSnu8sRwLdEFugxT399syVU8zJrCre");

#[program]
pub mod wormhole_reporter {
Expand Down

0 comments on commit d24dc97

Please sign in to comment.