update program id (#1)

* update program id

* re-export autobahn id

* Executor: fix log discriminant

---------

Co-authored-by: Serge Farny <serge.farny@gmail.com>
This commit is contained in:
Maximilian Schneider 2024-10-02 08:05:08 +01:00 committed by GitHub
parent 20fd5e70c2
commit dd34dbf658
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 14 additions and 16 deletions

View File

@ -96,8 +96,7 @@ impl<T: SwapStepInstructionBuilder> SwapInstructionsBuilder for SwapInstructions
let mut setup_instructions = vec![]; let mut setup_instructions = vec![];
let mut cleanup_instructions = vec![]; let mut cleanup_instructions = vec![];
let exec_program_id: Pubkey = let exec_program_id: Pubkey = autobahn_executor::id();
Pubkey::from_str("EXECM4wjzdCnrtQjHx5hy1r5k31tdvWBPYbqsjSoPfAh").unwrap();
let sol_mint: Pubkey = let sol_mint: Pubkey =
Pubkey::from_str("So11111111111111111111111111111111111111112").unwrap(); Pubkey::from_str("So11111111111111111111111111111111111111112").unwrap();

View File

@ -95,7 +95,7 @@ pub fn build_swap_ix(
); );
let instruction = Instruction { let instruction = Instruction {
program_id: Pubkey::from_str("EXECM4wjzdCnrtQjHx5hy1r5k31tdvWBPYbqsjSoPfAh").unwrap(), program_id: router_lib::autobahn_executor::id(),
accounts: account_metas, accounts: account_metas,
data, data,
}; };

View File

@ -79,7 +79,7 @@ async fn feed_tx_geyser(
vote: Some(false), vote: Some(false),
failed: None, failed: None,
signature: None, signature: None,
account_include: vec!["EXECM4wjzdCnrtQjHx5hy1r5k31tdvWBPYbqsjSoPfAh".to_string()], account_include: vec![autobahn_executor::id().to_string()],
account_exclude: vec![], account_exclude: vec![],
account_required: vec![], account_required: vec![],
}, },
@ -144,7 +144,7 @@ pub async fn handle_tx(tx: &SubscribeUpdateTransaction, sender: &async_channel::
continue; continue;
}; };
if program_id != Pubkey::from_str("EXECM4wjzdCnrtQjHx5hy1r5k31tdvWBPYbqsjSoPfAh").unwrap() { if program_id != autobahn_executor::id() {
continue; continue;
} }

View File

@ -7,3 +7,8 @@ pub mod retry_counter;
pub mod router_client; pub mod router_client;
pub mod test_tools; pub mod test_tools;
pub mod utils; pub mod utils;
pub mod autobahn_executor {
use solana_sdk::declare_id;
declare_id!("AutobNFLMzX1rFCDgwWpwr3ztG5c1oDbSrGq7Jj2LgE");
}

View File

@ -16,13 +16,7 @@ use solana_program::{account_info::AccountInfo, pubkey::Pubkey};
#[cfg(not(feature = "no-entrypoint"))] #[cfg(not(feature = "no-entrypoint"))]
use solana_program::entrypoint; use solana_program::entrypoint;
declare_id!("EXECM4wjzdCnrtQjHx5hy1r5k31tdvWBPYbqsjSoPfAh"); declare_id!("AutobNFLMzX1rFCDgwWpwr3ztG5c1oDbSrGq7Jj2LgE");
mod mango_owner {
use solana_program::declare_id;
declare_id!("EXECM4wjzdCnrtQjHx5hy1r5k31tdvWBPYbqsjSoPfAh"); // TODO
}
#[cfg(not(feature = "no-entrypoint"))] #[cfg(not(feature = "no-entrypoint"))]
entrypoint!(process_instruction); entrypoint!(process_instruction);

View File

@ -84,10 +84,10 @@ pub struct ReferrerWithdrawLog {
pub amount: u64, pub amount: u64,
} }
pub const PLATFORM_FEE_LOG_DISCRIMINANT: [u8; 8] = [119, 229, 218, 14, 28, 173, 136, 115]; pub const PLATFORM_FEE_LOG_DISCRIMINANT: [u8; 8] = [160, 183, 104, 34, 255, 190, 119, 188];
pub const REFERRER_FEE_LOG_DISCRIMINANT: [u8; 8] = [39, 182, 211, 59, 132, 55, 92, 254]; pub const REFERRER_FEE_LOG_DISCRIMINANT: [u8; 8] = [198, 149, 221, 27, 28, 103, 76, 95];
pub const REFERRER_WITHDRAW_LOG_DISCRIMINANT: [u8; 8] = [104, 148, 159, 252, 157, 185, 225, 186]; pub const REFERRER_WITHDRAW_LOG_DISCRIMINANT: [u8; 8] = [25, 7, 239, 41, 67, 36, 141, 92];
pub const SWAP_EVENT_DISCRIMINANT: [u8; 8] = [240, 219, 172, 202, 36, 10, 7, 123]; pub const SWAP_EVENT_DISCRIMINANT: [u8; 8] = [56, 178, 48, 245, 42, 152, 27, 75];
discriminant!( discriminant!(
PlatformFeeLog, PlatformFeeLog,