Skip to content

Commit

Permalink
chore: update program ids (#517)
Browse files Browse the repository at this point in the history
* chore: update program ids

* fix: integrity pool ids
  • Loading branch information
keyvankhademi authored Sep 3, 2024
1 parent 819251b commit fac01eb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion staking/Anchor.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,26 @@ governance = "pytGY6tWRgGinSCvRLnSv4fHfBTMoiDGiCsesmHWM6U"
chat = "gCHAtYKrUUktTVzE4hEnZdLV4LXrdBf6Hh9qMaJALET"
wallet_tester = "tstPARXbQ5yxVkRU2UcZRbYphzbUEW6t5ihzpLaafgz"
profile = "prfmVhiQTN5Spgoxa8uZJba35V1s7XXReqbBiqPDWeJ"
integrity_pool = "BiJszJY5BfRKkvt818SAbY9z9cJLp2jYDPgG2BzsufiE"
integrity_pool = "pyti8TM4zRVBjmarcgAPmTNNAXYKJv7WVHrkrm6woLN"
publisher_caps = "pytcD8uUjPxSLMsNqoVnm9dXQw9tKJJf3CQnGwa8oL7"

[programs.devnet]
staking = "pytS9TjG1qyAZypk7n8rw8gfW9sUaqqYyMhJQ4E7JCQ"
governance = "pytGY6tWRgGinSCvRLnSv4fHfBTMoiDGiCsesmHWM6U"
wallet_tester = "tstPARXbQ5yxVkRU2UcZRbYphzbUEW6t5ihzpLaafgz"
profile = "prfmVhiQTN5Spgoxa8uZJba35V1s7XXReqbBiqPDWeJ"
integrity_pool = "pyti8TM4zRVBjmarcgAPmTNNAXYKJv7WVHrkrm6woLN"
publisher_caps = "pytcD8uUjPxSLMsNqoVnm9dXQw9tKJJf3CQnGwa8oL7"


[programs.mainnet]
staking = "pytS9TjG1qyAZypk7n8rw8gfW9sUaqqYyMhJQ4E7JCQ"
governance = "pytGY6tWRgGinSCvRLnSv4fHfBTMoiDGiCsesmHWM6U"
wallet_tester = "tstPARXbQ5yxVkRU2UcZRbYphzbUEW6t5ihzpLaafgz"
profile = "prfmVhiQTN5Spgoxa8uZJba35V1s7XXReqbBiqPDWeJ"
integrity_pool = "pyti8TM4zRVBjmarcgAPmTNNAXYKJv7WVHrkrm6woLN"
publisher_caps = "pytcD8uUjPxSLMsNqoVnm9dXQw9tKJJf3CQnGwa8oL7"



[registry]
Expand Down
2 changes: 1 addition & 1 deletion staking/programs/integrity-pool/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub mod error;
pub mod state;
pub mod utils;

declare_id!("BiJszJY5BfRKkvt818SAbY9z9cJLp2jYDPgG2BzsufiE");
declare_id!("pyti8TM4zRVBjmarcgAPmTNNAXYKJv7WVHrkrm6woLN");

#[program]
pub mod integrity_pool {
Expand Down
2 changes: 1 addition & 1 deletion staking/programs/publisher-caps/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use {
wormhole_solana_vaas::zero_copy::VaaAccount,
};

declare_id!("BZ1jqX41oh3NaF7FmkrCWUrd4eQZQqid1edPLGxzJMc2");
declare_id!("pytcD8uUjPxSLMsNqoVnm9dXQw9tKJJf3CQnGwa8oL7");

pub const WORMHOLE_RECEIVER: Pubkey = pubkey!("HDwcJBJXjL9FpJ7UBsYBtaDjsBUhuLCUYoz3zr8SWWaQ");
pub const PRICE_FEEDS_EMITTER_ADDRESS: Pubkey =
Expand Down

0 comments on commit fac01eb

Please sign in to comment.