When I tried to call the sign_print_trade method using CPI, I got the following error:
logs: [
'Program 5Vhsk4PT6MDMrGSsQoQGEHfakkntEYydRYTs14T1PooL invoke [1]',
'Program log: Instruction: Settle',
'Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [2]',
'Program log: Instruction: InitializePrintTrade',
'Program 11111111111111111111111111111111 invoke [3]',
'Program 11111111111111111111111111111111 success',
'Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 14389 of 177160 compute units',
'Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success',
'Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [2]',
'Program log: Instruction: SignPrintTrade',
'Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr invoke [3]',
'Program log: Instruction: ValidateAccountHealth',
'Program log: AnchorError caused by account: covariance_metadata. Error Code: AccountDiscriminatorMismatch. Error Number: 3002. Error Message: 8 byte discriminator did not match what was expected.',
'Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr consumed 7034 of 115600 compute units',
'Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr failed: custom program error: 0xbba',
'Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 30781 of 139347 compute units',
'Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL failed: custom program error: 0xbba',
'Program 5Vhsk4PT6MDMrGSsQoQGEHfakkntEYydRYTs14T1PooL consumed 91434 of 200000 compute units',
'Program 5Vhsk4PT6MDMrGSsQoQGEHfakkntEYydRYTs14T1PooL failed: custom program error: 0xbba'
]
The code I used:
let cpi_params = dex_cpi::typedefs::SignPrintTradeParams {
product_index: data.product_index,
size: data.size.to_dex_fractional(),
price: data.price.to_dex_fractional(),
side: data.counterparty_side.to_dex_side(),
operator_creator_fee_proportion: data.operator_creator_fee_proportion.to_dex_fractional(),
operator_counterparty_fee_proportion: data
.operator_counterparty_fee_proportion
.to_dex_fractional(),
};
let accounts_infos = &[
ctx.accounts.counterparty_owner.to_account_info().clone(),
ctx.accounts.creator.to_account_info().clone(),
ctx.accounts.counterparty.to_account_info().clone(),
ctx.accounts.operator.to_account_info().clone(),
ctx.accounts.market_product_group.to_account_info().clone(),
ctx.accounts.product.to_account_info().clone(),
ctx.accounts.print_trade.to_account_info().clone(),
ctx.accounts.system_program.to_account_info().clone(),
ctx.accounts.fee_model_program.to_account_info().clone(),
ctx.accounts
.fee_model_configuration_acct
.to_account_info()
.clone(),
ctx.accounts.fee_output_register.to_account_info().clone(),
ctx.accounts.risk_engine_program.to_account_info().clone(),
ctx.accounts
.risk_model_configuration_acct
.to_account_info()
.clone(),
ctx.accounts.risk_output_register.to_account_info().clone(),
ctx.accounts.risk_and_fee_signer.to_account_info().clone(),
ctx.accounts
.creator_trader_fee_state_acct
.to_account_info()
.clone(),
ctx.accounts
.creator_trader_risk_state_acct
.to_account_info()
.clone(),
ctx.accounts
.counterparty_trader_fee_state_acct
.to_account_info()
.clone(),
ctx.accounts
.counterparty_trader_risk_state_acct
.to_account_info()
.clone(),
ctx.accounts
.counterparty_trader_risk_state_acct
.to_account_info()
.clone(),
ctx.accounts.s_account.to_account_info().clone(),
ctx.accounts.r_account.to_account_info().clone(),
];
solana_program::program::invoke(
&Instruction {
program_id: ctx.accounts.dex.key(),
accounts: vec![
AccountMeta::new(ctx.accounts.counterparty_owner.key(), true),
AccountMeta::new(ctx.accounts.creator.key(), false),
AccountMeta::new(ctx.accounts.counterparty.key(), false),
AccountMeta::new(ctx.accounts.operator.key(), false),
AccountMeta::new(ctx.accounts.market_product_group.key(), false),
AccountMeta::new(ctx.accounts.product.key(), false),
AccountMeta::new(ctx.accounts.print_trade.key(), false),
AccountMeta::new_readonly(ctx.accounts.system_program.key(), false),
AccountMeta::new_readonly(ctx.accounts.fee_model_program.key(), false),
AccountMeta::new_readonly(ctx.accounts.fee_model_configuration_acct.key(), false),
AccountMeta::new(ctx.accounts.fee_output_register.key(), false),
AccountMeta::new_readonly(ctx.accounts.risk_engine_program.key(), false),
AccountMeta::new_readonly(ctx.accounts.risk_model_configuration_acct.key(), false),
AccountMeta::new(ctx.accounts.risk_output_register.key(), false),
AccountMeta::new_readonly(ctx.accounts.risk_and_fee_signer.key(), false),
AccountMeta::new(ctx.accounts.creator_trader_fee_state_acct.key(), false),
AccountMeta::new(ctx.accounts.creator_trader_risk_state_acct.key(), false),
AccountMeta::new(ctx.accounts.counterparty_trader_fee_state_acct.key(), false),
AccountMeta::new(
ctx.accounts.counterparty_trader_risk_state_acct.key(),
false,
),
AccountMeta::new(
ctx.accounts.counterparty_trader_risk_state_acct.key(),
false,
),
AccountMeta::new(ctx.accounts.s_account.key(), false),
AccountMeta::new(ctx.accounts.r_account.key(), false),
],
data: dex_cpi::instruction::SignPrintTrade {
_params: cpi_params,
}
.data(),
},
accounts_infos,
)
.unwrap();
(?) This error means that I passed the additional accounts (s_account and r_account) incorrectly.
I tried to find the place where dexteritysdk passes these accounts in the SignPrintTrade instruction.
And I found out that the sdk didn't use the extra accounts. They are passed to the sign_print_trade_ixs function but this function does not use them.
Then I tried to run the test for the sign_print_trade method and it passed:
Logs
running 1 test test test_print_trade ... [2022-10-28T08:38:43.775630053Z INFO solana_program_test] "dex" BPF program from /home/andrii/zpoken/dexterity_hxro/target/deploy/dex.so, modified 1 day, 18 hours, 9 minutes, 32 seconds, 437 ms, 242 µs and 616 ns ago [2022-10-28T08:38:43.775984061Z INFO solana_program_test] "agnostic_orderbook" BPF program from /home/andrii/zpoken/dexterity_hxro/target/deploy/agnostic_orderbook.so, modified 2 days, 17 hours, 39 minutes, 24 seconds, 969 ms, 974 µs and 191 ns ago [2022-10-28T08:38:43.776368400Z INFO solana_program_test] "noop_risk_engine" BPF program from /home/andrii/zpoken/dexterity_hxro/target/deploy/noop_risk_engine.so, modified 2 days, 17 hours, 32 minutes, 13 seconds, 261 ms, 632 µs and 665 ns ago [2022-10-28T08:38:43.776703230Z INFO solana_program_test] "constant_fees" BPF program from /home/andrii/zpoken/dexterity_hxro/target/deploy/constant_fees.so, modified 2 days, 17 hours, 36 minutes, 51 seconds, 276 ms, 43 µs and 14 ns ago [2022-10-28T08:38:43.777259258Z INFO solana_program_test] "instruments" BPF program from /home/andrii/zpoken/dexterity_hxro/target/deploy/instruments.so, modified 2 days, 17 hours, 33 minutes, 31 seconds, 219 ms, 616 µs and 462 ns ago [2022-10-28T08:38:43.777592664Z INFO solana_program_test] "dummy_oracle" BPF program from /home/andrii/zpoken/dexterity_hxro/target/deploy/dummy_oracle.so, modified 2 days, 17 hours, 34 minutes, 55 seconds, 401 ms, 834 µs and 165 ns ago [2022-10-28T08:38:43.901377830Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:43.901584389Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 1461600, space: 82, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:38:43.901696527Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999999999990000, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 93Pd1EnAfzVxJybpvjD4edJFTuZcEoKBffPbS83jc8h6, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:43.902239899Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:43.929099257Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:38:43.929769536Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeMint [2022-10-28T08:38:43.930577586Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2316 [2022-10-28T08:38:43.930616845Z DEBUG solana_rbpf::vm] Max frame depth reached: 9 [2022-10-28T08:38:43.930630773Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2586 of 400000 compute units [2022-10-28T08:38:43.930725466Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:43.960879568Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:38:43.961690623Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:38:43.964674697Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:43.964761783Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:38:43.964819831Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999999998523400, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: CDJX3fnfrxCUfDKqXzB5pob9tQb2rDGMmcoQRuzYU1hb, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:43.965109288Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:43.965312971Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:38:43.976069563Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:38:43.976587874Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:38:43.977524575Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2449 [2022-10-28T08:38:43.977543232Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:43.977557872Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2933 of 186433 compute units [2022-10-28T08:38:43.977658456Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:43.978164984Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8800 [2022-10-28T08:38:43.978184593Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:38:43.978201017Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 17057 of 200000 compute units [2022-10-28T08:38:43.978305288Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:38:44.010193937Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM invoke [1] [2022-10-28T08:38:44.011523733Z DEBUG solana_runtime::message_processor::stable_log] Program log: Fee Ix: UpdateFees(UpdateFeesParams { maker_fee_bps: 0, taker_fee_bps: 0 }) [2022-10-28T08:38:44.011898623Z DEBUG solana_runtime::message_processor::stable_log] Program log: 8 [2022-10-28T08:38:44.012716130Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.012772976Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 946560, space: 8, owner: 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM } [2022-10-28T08:38:44.012851595Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999999996479120, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 3xrfQv9fNrzDo2ykNdAscF5caEZYNqGRhj4AuL4uaLWT, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.013177606Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.013470459Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 5275 [2022-10-28T08:38:44.013491151Z DEBUG solana_rbpf::vm] Max frame depth reached: 13 [2022-10-28T08:38:44.013506843Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM consumed 8099 of 200000 compute units [2022-10-28T08:38:44.013617538Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM success [2022-10-28T08:38:44.022394369Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.022478930Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 1002407040, space: 143896, owner: FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL } [2022-10-28T08:38:44.022538862Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999999995512560, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: eURtD7aatfwPme868JM85MuowHYNePGzGi5CvHjhH1N, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.022812467Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.125749773Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:38:44.126914384Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeMarketProductGroup [2022-10-28T08:38:44.129879866Z DEBUG solana_runtime::message_processor::stable_log] Program log: Creating the market collateral vault [2022-10-28T08:38:44.130567008Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.130623252Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:38:44.130667161Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999998993105520, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: D3LDF4aWVWZ6VAG3ykrVysVk1jfR5mJUKCr6JdZYWN2a, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.130856615Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.130944524Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initializing the market collateral vault [2022-10-28T08:38:44.138436721Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:38:44.138916073Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount2 [2022-10-28T08:38:44.139911942Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3034 [2022-10-28T08:38:44.139933496Z DEBUG solana_rbpf::vm] Max frame depth reached: 9 [2022-10-28T08:38:44.139944668Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 3394 of 778735 compute units [2022-10-28T08:38:44.140086045Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.140809882Z DEBUG solana_runtime::message_processor::stable_log] Program log: sequence: 0 [2022-10-28T08:38:44.140884664Z DEBUG solana_runtime::message_processor::stable_log] Program log: eURtD7aatfwPme868JM85MuowHYNePGzGi5CvHjhH1N [2022-10-28T08:38:44.141273632Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 15941 [2022-10-28T08:38:44.141289955Z DEBUG solana_rbpf::vm] Max frame depth reached: 10 [2022-10-28T08:38:44.141306819Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 34123 of 800000 compute units [2022-10-28T08:38:44.141558369Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:38:44.141753455Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.141808176Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 3953280, space: 440, owner: 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 } [2022-10-28T08:38:44.141870512Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999998991066240, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: FmoxniHYgVmSrPHLdNLrGiB4LeQWZsg9X2m3HdmWkETo, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.142132683Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.142213056Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.142257707Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 1002240, space: 16, owner: 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM } [2022-10-28T08:38:44.142316787Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999998987112960, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: ExyM2EuoZ6HVCHYaEG1fGuW6Y7ctRNBHa756GPpFAs5Q, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.142558467Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.176758544Z DEBUG solana_runtime::message_processor::stable_log] Program 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh invoke [1] [2022-10-28T08:38:44.177975441Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.178024971Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 1287600, space: 57, owner: 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh } [2022-10-28T08:38:44.178067738Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999998986105720, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 29E4oFNTGX5hubLzCbgDe4qkPJq5MxUTTXJiMtB4QZSR, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.178257212Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.178591630Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3372 [2022-10-28T08:38:44.178618164Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.178630799Z DEBUG solana_runtime::message_processor::stable_log] Program 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh consumed 6136 of 200000 compute units [2022-10-28T08:38:44.178699158Z DEBUG solana_runtime::message_processor::stable_log] Program 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh success [2022-10-28T08:38:44.201880900Z DEBUG solana_runtime::message_processor::stable_log] Program 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh invoke [1] [2022-10-28T08:38:44.203076163Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.203126395Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 1169280, space: 40, owner: 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh } [2022-10-28T08:38:44.203169192Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999998984813120, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 9roR76NNfkCdbtCwq5dPrdr1FpAzgvUdyMrfXUsy7yAS, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.203359037Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.203612871Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2833 [2022-10-28T08:38:44.203628904Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.203640507Z DEBUG solana_runtime::message_processor::stable_log] Program 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh consumed 5457 of 200000 compute units [2022-10-28T08:38:44.203707112Z DEBUG solana_runtime::message_processor::stable_log] Program 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh success [2022-10-28T08:38:44.248824521Z DEBUG solana_runtime::message_processor::stable_log] Program 8981bZYszfz1FrFVx7gcUm61RfawMoAHnURuERRJKdkq invoke [1] [2022-10-28T08:38:44.249326609Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeDerivative [2022-10-28T08:38:44.251063339Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.251112870Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2449920, space: 224, owner: 8981bZYszfz1FrFVx7gcUm61RfawMoAHnURuERRJKdkq } [2022-10-28T08:38:44.251156739Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999998983638840, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 9byxWAC1VswLDSQHt6QzMPfRVmStKiKsY3aAoL7SPN44, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.251345872Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.252264685Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 7695 [2022-10-28T08:38:44.252282220Z DEBUG solana_rbpf::vm] Max frame depth reached: 8 [2022-10-28T08:38:44.252294184Z DEBUG solana_runtime::message_processor::stable_log] Program 8981bZYszfz1FrFVx7gcUm61RfawMoAHnURuERRJKdkq consumed 10449 of 200000 compute units [2022-10-28T08:38:44.252469189Z DEBUG solana_runtime::message_processor::stable_log] Program 8981bZYszfz1FrFVx7gcUm61RfawMoAHnURuERRJKdkq success [2022-10-28T08:38:44.270691568Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.270816782Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2227200, space: 192, owner: aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e } [2022-10-28T08:38:44.270917857Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999998981163920, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 5dmp46zfjbw5SPTyKmYt6wo8r3xW7W8bC88BUqVwuFuF, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.271351015Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.271526019Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.271613046Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 794852880, space: 114075, owner: aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e } [2022-10-28T08:38:44.271714061Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999998978936720, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 781F6gMmsxbwh82ebAApyn64xX6ELnLHLt2dUKkyruAv, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.272160466Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.272392887Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.272487669Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 457021440, space: 65536, owner: aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e } [2022-10-28T08:38:44.272593443Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999998184083840, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: F5fWiCopw99Z21xMUECdEeWkb7SrV8NGFUL2EB2ctTZe, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.273040570Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.273254022Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.273358895Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 457021440, space: 65536, owner: aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e } [2022-10-28T08:38:44.273500903Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999997727062400, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: HF9rfyMu1wZcDvGxF8pD2eavk2Czq21Gyyp8MzuhPE4y, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.274159658Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.308081181Z DEBUG solana_runtime::message_processor::stable_log] Program aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e invoke [1] [2022-10-28T08:38:44.308508628Z DEBUG solana_runtime::message_processor::stable_log] Program log: Entrypoint [2022-10-28T08:38:44.308534200Z DEBUG solana_runtime::message_processor::stable_log] Program log: Beginning processing [2022-10-28T08:38:44.308557687Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction unpacked [2022-10-28T08:38:44.308578720Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: Create Market [2022-10-28T08:38:44.309497983Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3485 [2022-10-28T08:38:44.309513755Z DEBUG solana_rbpf::vm] Max frame depth reached: 5 [2022-10-28T08:38:44.309529748Z DEBUG solana_runtime::message_processor::stable_log] Program aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e consumed 3885 of 1000000 compute units [2022-10-28T08:38:44.309682197Z DEBUG solana_runtime::message_processor::stable_log] Program aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e success [2022-10-28T08:38:44.331870305Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:38:44.332282540Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeMarketProduct [2022-10-28T08:38:44.349650678Z DEBUG solana_runtime::message_processor::stable_log] Program log: seeds: [AccountInfo { key: 9byxWAC1VswLDSQHt6QzMPfRVmStKiKsY3aAoL7SPN44, owner: 8981bZYszfz1FrFVx7gcUm61RfawMoAHnURuERRJKdkq, is_signer: false, is_writable: false, executable: false, rent_epoch: 0, lamports: 2449920, data.len: 224, data: da257e064e6729130100000000000000000000000000000002000000000000000100000000000000ff0000000000000000000000000000000000000000000000, .. }] [2022-10-28T08:38:44.359590086Z DEBUG solana_runtime::message_processor::stable_log] Program log: sequence: 1 [2022-10-28T08:38:44.359686973Z DEBUG solana_runtime::message_processor::stable_log] Program log: eURtD7aatfwPme868JM85MuowHYNePGzGi5CvHjhH1N [2022-10-28T08:38:44.359877409Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 83529 [2022-10-28T08:38:44.359893952Z DEBUG solana_rbpf::vm] Max frame depth reached: 23 [2022-10-28T08:38:44.359911247Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 87412 of 200000 compute units [2022-10-28T08:38:44.360021791Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:38:44.365900318Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.366053879Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 100000000, space: 0, owner: 11111111111111111111111111111111 } [2022-10-28T08:38:44.366141076Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999997270025960, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 9wnzssodkkR83xu7kWmeYstUPAwPSoLJR2E3HCBMvXjv, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.366800803Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.392749184Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:38:44.393764452Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:38:44.396004082Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.396054123Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:38:44.396097672Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999997170020960, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 4Z5CdfRubaqymBvSpP55FqRfNPAzUC5dqU6Tz6MrYwZm, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.396289040Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.396434875Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:38:44.412165262Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:38:44.413479847Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:38:44.415332383Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2449 [2022-10-28T08:38:44.415368225Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.415383867Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2933 of 186345 compute units [2022-10-28T08:38:44.415488960Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.415963933Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8924 [2022-10-28T08:38:44.415982200Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:38:44.415996188Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 17181 of 200000 compute units [2022-10-28T08:38:44.416102634Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:38:44.436444720Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM invoke [1] [2022-10-28T08:38:44.437528607Z DEBUG solana_runtime::message_processor::stable_log] Program log: Fee Ix: InitializeTraderAcct [2022-10-28T08:38:44.438656433Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.438731195Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 946560, space: 8, owner: 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM } [2022-10-28T08:38:44.438789222Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999997167976680, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: J5rbAJJsKcnzmhSn9586ZdeRP4F1Yq4xBk5cnsvxL7w4, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.439066224Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.439312814Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3991 [2022-10-28T08:38:44.439330520Z DEBUG solana_rbpf::vm] Max frame depth reached: 11 [2022-10-28T08:38:44.439344849Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM consumed 6715 of 200000 compute units [2022-10-28T08:38:44.439468449Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM success [2022-10-28T08:38:44.452011936Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.452141519Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 443769600, space: 63632, owner: FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL } [2022-10-28T08:38:44.452245420Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999997167010120, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 5GHiWK8gvG34LAaKNqi7PDMUS9PCSWZFTV2z4qx3o6pC, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.452691374Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.470753207Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:38:44.471415610Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeTraderRiskGroup [2022-10-28T08:38:44.501135406Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 invoke [2] [2022-10-28T08:38:44.501588334Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: CreateRiskStateAccount [2022-10-28T08:38:44.502776332Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [3] [2022-10-28T08:38:44.502830141Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 890880, space: 0, owner: 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 } [2022-10-28T08:38:44.502875313Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 9wnzssodkkR83xu7kWmeYstUPAwPSoLJR2E3HCBMvXjv, account: RefCell { value: Account { lamports: 100000000, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: GeMi67rue93MMRDaeqfca1HnZ6UkYbufJJ3qEuKM5m18, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.503064516Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.503988499Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 5887 [2022-10-28T08:38:44.504009873Z DEBUG solana_rbpf::vm] Max frame depth reached: 8 [2022-10-28T08:38:44.504021807Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 consumed 14631 of 390665 compute units [2022-10-28T08:38:44.504120517Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 success [2022-10-28T08:38:44.504714751Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8210 [2022-10-28T08:38:44.504734812Z DEBUG solana_rbpf::vm] Max frame depth reached: 9 [2022-10-28T08:38:44.504748490Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 24729 of 400000 compute units [2022-10-28T08:38:44.504923154Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:38:44.528051628Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:38:44.529153522Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: MintTo [2022-10-28T08:38:44.531128716Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2498 [2022-10-28T08:38:44.531169609Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.531206634Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2928 of 200000 compute units [2022-10-28T08:38:44.531380406Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.556534126Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:38:44.558191195Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:38:44.561467296Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.561533159Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:38:44.561576066Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999996723225520, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: EfKUToTefcr5cEGtUcuGJe9m71QT1ExKWFTsy2aC54Ft, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.561766352Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.561916607Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:38:44.569370897Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:38:44.569806751Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:38:44.570749893Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2474 [2022-10-28T08:38:44.570769382Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.570779783Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2958 of 186345 compute units [2022-10-28T08:38:44.570855276Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.571250538Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8924 [2022-10-28T08:38:44.571266199Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:38:44.571277552Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 17206 of 200000 compute units [2022-10-28T08:38:44.571386824Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:38:44.596178289Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:38:44.596644835Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: MintTo [2022-10-28T08:38:44.597470870Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2594 [2022-10-28T08:38:44.597486511Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.597496762Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 3024 of 400000 compute units [2022-10-28T08:38:44.597573327Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.604506572Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:38:44.604935601Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: FreezeAccount [2022-10-28T08:38:44.605650250Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2270 [2022-10-28T08:38:44.605666042Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.605677796Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2680 of 396976 compute units [2022-10-28T08:38:44.605747978Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.619267173Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.619391495Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 100000000, space: 0, owner: 11111111111111111111111111111111 } [2022-10-28T08:38:44.619455315Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999996721166240, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: B9e5WMYbTXvmkBShtG8yaMESB3xcobcFECCEAJEuAfB7, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.619888252Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.645444819Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:38:44.646334071Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:38:44.648599002Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.648649705Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:38:44.648692983Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999996621161240, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: CsxwWz3ptvxMMWJTdJfHyHdTXvNVn28MEAHiArtsXeGT, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.648881245Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.649017862Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:38:44.656473295Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:38:44.656875099Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:38:44.657655171Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2449 [2022-10-28T08:38:44.657672055Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.657682927Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2933 of 186345 compute units [2022-10-28T08:38:44.657762799Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.658190676Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8924 [2022-10-28T08:38:44.658214845Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:38:44.658228904Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 17181 of 200000 compute units [2022-10-28T08:38:44.658367615Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:38:44.683597479Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM invoke [1] [2022-10-28T08:38:44.684316837Z DEBUG solana_runtime::message_processor::stable_log] Program log: Fee Ix: InitializeTraderAcct [2022-10-28T08:38:44.685366154Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.685422999Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 946560, space: 8, owner: 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM } [2022-10-28T08:38:44.685480215Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999996619116960, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: CDosrMDHGtFgXpkLaRYYLK8fxCDWWiJ7hZJcVzawg1mu, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.685757888Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.686004849Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3991 [2022-10-28T08:38:44.686023326Z DEBUG solana_rbpf::vm] Max frame depth reached: 11 [2022-10-28T08:38:44.686038577Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM consumed 6715 of 200000 compute units [2022-10-28T08:38:44.686161446Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM success [2022-10-28T08:38:44.695704391Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.695787139Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 443769600, space: 63632, owner: FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL } [2022-10-28T08:38:44.695848072Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999996618150400, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: HAUweiieyHeaRD3YnVViU3iQC5CwzJ8y6BEC3t4m5Kau, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.696126587Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.705665493Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:38:44.706271241Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeTraderRiskGroup [2022-10-28T08:38:44.717372505Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 invoke [2] [2022-10-28T08:38:44.717811034Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: CreateRiskStateAccount [2022-10-28T08:38:44.719101920Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [3] [2022-10-28T08:38:44.719159607Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 890880, space: 0, owner: 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 } [2022-10-28T08:38:44.719202855Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B9e5WMYbTXvmkBShtG8yaMESB3xcobcFECCEAJEuAfB7, account: RefCell { value: Account { lamports: 100000000, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 2fFJp9gQfGgbNN7W4nhGCNacCqZucqNHo5nwr5kwrQam, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.719391938Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.720337305Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 5887 [2022-10-28T08:38:44.720362807Z DEBUG solana_rbpf::vm] Max frame depth reached: 8 [2022-10-28T08:38:44.720373999Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 consumed 14631 of 390665 compute units [2022-10-28T08:38:44.720484393Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 success [2022-10-28T08:38:44.720903122Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8210 [2022-10-28T08:38:44.720921058Z DEBUG solana_rbpf::vm] Max frame depth reached: 9 [2022-10-28T08:38:44.720932151Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 24729 of 400000 compute units [2022-10-28T08:38:44.721078918Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:38:44.744457710Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:38:44.745577099Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: MintTo [2022-10-28T08:38:44.747426528Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2498 [2022-10-28T08:38:44.747449004Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.747464365Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2928 of 200000 compute units [2022-10-28T08:38:44.747552624Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.774854578Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:38:44.776421765Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:38:44.780729968Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.780793076Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:38:44.780848088Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999996174365800, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: FWC7iQUpKVhUQFaYCkhfEebZummg2mWNkLWXYcZymzAP, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.781088725Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.781266897Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:38:44.788894449Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:38:44.789353599Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:38:44.790298485Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2474 [2022-10-28T08:38:44.790319167Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.790334668Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2958 of 187845 compute units [2022-10-28T08:38:44.790429330Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.790878641Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8924 [2022-10-28T08:38:44.790896808Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:38:44.790909173Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 15706 of 200000 compute units [2022-10-28T08:38:44.791018524Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:38:44.810466127Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:38:44.810927292Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: MintTo [2022-10-28T08:38:44.811764599Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2594 [2022-10-28T08:38:44.811783277Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.811799390Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 3024 of 400000 compute units [2022-10-28T08:38:44.811878279Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.818812165Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:38:44.819259101Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: FreezeAccount [2022-10-28T08:38:44.819972007Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2270 [2022-10-28T08:38:44.819989462Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.819999983Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2680 of 396976 compute units [2022-10-28T08:38:44.820073643Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.833159670Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.833291136Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 100000000, space: 0, owner: 11111111111111111111111111111111 } [2022-10-28T08:38:44.833360567Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999996172306520, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 16XqDtQU3FrJWX73vQpb5QZJsmU159mV9XNKsagbge8, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.833804707Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.856604936Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:38:44.857357562Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:38:44.859610980Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.859665099Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:38:44.859709770Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999996072301520, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 5aArYnwSNiFECNrpng7HqJJjNyDGhb2A6wC3oyDJmRRT, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.859903362Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.860044849Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:38:44.867193731Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:38:44.867570945Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:38:44.868357029Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2449 [2022-10-28T08:38:44.868374925Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.868390667Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2933 of 186345 compute units [2022-10-28T08:38:44.868477303Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.868938598Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8924 [2022-10-28T08:38:44.868957075Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:38:44.868972016Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 17181 of 200000 compute units [2022-10-28T08:38:44.869083101Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:38:44.892148778Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM invoke [1] [2022-10-28T08:38:44.892964361Z DEBUG solana_runtime::message_processor::stable_log] Program log: Fee Ix: InitializeTraderAcct [2022-10-28T08:38:44.893863925Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.893911812Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 946560, space: 8, owner: 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM } [2022-10-28T08:38:44.893954127Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999996070257240, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 3AtdgEmn7KVURDrCBovHKfuKZucZxvfxkFhinLovndVe, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.894142038Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.894343036Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3991 [2022-10-28T08:38:44.894358537Z DEBUG solana_rbpf::vm] Max frame depth reached: 11 [2022-10-28T08:38:44.894370261Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM consumed 6715 of 200000 compute units [2022-10-28T08:38:44.894467298Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM success [2022-10-28T08:38:44.910502032Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:38:44.910710635Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 443769600, space: 63632, owner: FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL } [2022-10-28T08:38:44.910852312Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999996069290680, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: HGWJpc7CN9hex5WAJLzx2duNdk71Pkz9UWR4GjSTdBLL, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.911430684Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.930301768Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:38:44.930917988Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeTraderRiskGroup [2022-10-28T08:38:44.940616017Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 invoke [2] [2022-10-28T08:38:44.941049165Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: CreateRiskStateAccount [2022-10-28T08:38:44.942191270Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [3] [2022-10-28T08:38:44.942238826Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 890880, space: 0, owner: 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 } [2022-10-28T08:38:44.942282395Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 16XqDtQU3FrJWX73vQpb5QZJsmU159mV9XNKsagbge8, account: RefCell { value: Account { lamports: 100000000, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 97iJ2x2FKdhSjrnj3sUXGAJySxSjXU1Z4LAEEQ6xjoL3, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.942469905Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.943401964Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 5887 [2022-10-28T08:38:44.943422005Z DEBUG solana_rbpf::vm] Max frame depth reached: 8 [2022-10-28T08:38:44.943433929Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 consumed 14631 of 390665 compute units [2022-10-28T08:38:44.943528521Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 success [2022-10-28T08:38:44.943994986Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8210 [2022-10-28T08:38:44.944039476Z DEBUG solana_rbpf::vm] Max frame depth reached: 9 [2022-10-28T08:38:44.944067664Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 24729 of 400000 compute units [2022-10-28T08:38:44.944324164Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:38:44.967364198Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:38:44.968219973Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: MintTo [2022-10-28T08:38:44.969233979Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2498 [2022-10-28T08:38:44.969250803Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:44.969263849Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2928 of 200000 compute units [2022-10-28T08:38:44.969342138Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:44.990331416Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:38:44.991245769Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:38:44.993911203Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:44.993980563Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:38:44.994039202Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999995625506080, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 2aS8cNe2wXCxKEuBckfrwEsQ2sqiosnCAcJUX5ev3S35, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:44.994296474Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:44.994454253Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:38:45.004820414Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:38:45.005310566Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:38:45.006288317Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2474 [2022-10-28T08:38:45.006310582Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:45.006325051Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2958 of 186345 compute units [2022-10-28T08:38:45.006415525Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:45.006893823Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8924 [2022-10-28T08:38:45.006913493Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:38:45.006927462Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 17206 of 200000 compute units [2022-10-28T08:38:45.007037795Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:38:45.024931441Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:38:45.026063584Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: MintTo [2022-10-28T08:38:45.028362460Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2594 [2022-10-28T08:38:45.028392541Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:45.028411871Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 3024 of 400000 compute units [2022-10-28T08:38:45.028531373Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:45.035925911Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:38:45.036933743Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: FreezeAccount [2022-10-28T08:38:45.038476317Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2270 [2022-10-28T08:38:45.038509715Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:45.038533674Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2680 of 396976 compute units [2022-10-28T08:38:45.038722596Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:38:45.059011303Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:38:45.059513100Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: SetupCapitalLimits [2022-10-28T08:38:45.061176138Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:45.061230388Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 1447680, space: 80, owner: FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL } [2022-10-28T08:38:45.061289458Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7aufrnMu5W9n2EZPUDSkvTiRmmkaLEBQSmNokhY8C7Qr, account: RefCell { value: Account { lamports: 999995623451800, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 6SqAsHhAbkqoKtFGFeEpKykghzUZSRB2hBTeP1rXKscA, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:45.061543502Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:45.063155508Z DEBUG solana_runtime::message_processor::stable_log] Program log: Setup Withdrawal Limit: 0.0 [2022-10-28T08:38:45.063664789Z DEBUG solana_runtime::message_processor::stable_log] Program log: Setup Deposit Limit: 0.0 [2022-10-28T08:38:45.064106975Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 9988 [2022-10-28T08:38:45.064128378Z DEBUG solana_rbpf::vm] Max frame depth reached: 15 [2022-10-28T08:38:45.064143469Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 14502 of 200000 compute units [2022-10-28T08:38:45.064260586Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:38:45.089260837Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:38:45.089995265Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializePrintTrade [2022-10-28T08:38:45.092542955Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:38:45.092623338Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2526480, space: 235, owner: FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL } [2022-10-28T08:38:45.092684492Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 9wnzssodkkR83xu7kWmeYstUPAwPSoLJR2E3HCBMvXjv, account: RefCell { value: Account { lamports: 99109120, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 4n6dxt8gHiDPUU4vBi8H3xhn2FDZwWwSjUn5JYe1sPD8, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:38:45.092943046Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:38:45.095219637Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 11499 [2022-10-28T08:38:45.095262334Z DEBUG solana_rbpf::vm] Max frame depth reached: 8 [2022-10-28T08:38:45.095278176Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 15993 of 200000 compute units [2022-10-28T08:38:45.095470806Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:38:45.127483642Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:38:45.128902426Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: SignPrintTrade [2022-10-28T08:38:45.133239651Z DEBUG solana_runtime::message_processor::stable_log] Program log: REMAINING ACCOUNTS LEN: 0 [2022-10-28T08:38:45.148478189Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 invoke [2] [2022-10-28T08:38:45.149079066Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: ValidateAccountHealth [2022-10-28T08:38:45.151376159Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3611 [2022-10-28T08:38:45.151428174Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:45.151457985Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 consumed 11231 of 173636 compute units [2022-10-28T08:38:45.151712179Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 success [2022-10-28T08:38:45.170198045Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 invoke [2] [2022-10-28T08:38:45.171382794Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: ValidateAccountHealth [2022-10-28T08:38:45.174267648Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3611 [2022-10-28T08:38:45.174325585Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:38:45.174354003Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 consumed 11231 of 150793 compute units [2022-10-28T08:38:45.174592426Z DEBUG solana_runtime::message_processor::stable_log] Program 5CvkYRHQg97pvDfVUhZFEj65bC3mLaENaie3PhGmB5f1 success [2022-10-28T08:38:45.176670685Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 36558 [2022-10-28T08:38:45.176688812Z DEBUG solana_rbpf::vm] Max frame depth reached: 11 [2022-10-28T08:38:45.176701117Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 64560 of 200000 compute units [2022-10-28T08:38:45.176897204Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success oktest result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.41s
Then I noticed that this test uses the noop_risk_engine
program so I changed it to use the same risk engine program I use (risk_engine
) and then the test failed:
Logs
running 1 test test test_print_trade ... [2022-10-28T08:43:11.242296610Z INFO solana_program_test] "dex" BPF program from /home/andrii/zpoken/dexterity_hxro/target/deploy/dex.so, modified 1 day, 18 hours, 13 minutes, 59 seconds, 903 ms, 899 µs and 308 ns ago [2022-10-28T08:43:11.243119760Z INFO solana_program_test] "agnostic_orderbook" BPF program from /home/andrii/zpoken/dexterity_hxro/target/deploy/agnostic_orderbook.so, modified 2 days, 17 hours, 43 minutes, 52 seconds, 437 ms, 108 µs and 643 ns ago [2022-10-28T08:43:11.244777890Z INFO solana_program_test] "risk_engine" BPF program from /home/andrii/zpoken/dexterity_hxro/target/deploy/risk_engine.so, modified 2 days, 17 hours, 35 minutes, 18 seconds, 924 ms, 752 µs and 900 ns ago [2022-10-28T08:43:11.245352788Z INFO solana_program_test] "constant_fees" BPF program from /home/andrii/zpoken/dexterity_hxro/target/deploy/constant_fees.so, modified 2 days, 17 hours, 41 minutes, 18 seconds, 744 ms, 701 µs and 356 ns ago [2022-10-28T08:43:11.246291682Z INFO solana_program_test] "instruments" BPF program from /home/andrii/zpoken/dexterity_hxro/target/deploy/instruments.so, modified 2 days, 17 hours, 37 minutes, 58 seconds, 688 ms, 653 µs and 262 ns ago [2022-10-28T08:43:11.246777424Z INFO solana_program_test] "dummy_oracle" BPF program from /home/andrii/zpoken/dexterity_hxro/target/deploy/dummy_oracle.so, modified 2 days, 17 hours, 39 minutes, 22 seconds, 871 ms, 32 µs and 198 ns ago [2022-10-28T08:43:11.373300353Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:11.373471210Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 1461600, space: 82, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:43:11.373577508Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999999999990000, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: J8ywX6puqVX3DdNDFireF8XJpuUKDKimvcKsGG7uVYQe, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.374035609Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.401066003Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:43:11.401589535Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeMint [2022-10-28T08:43:11.402260802Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2316 [2022-10-28T08:43:11.402280519Z DEBUG solana_rbpf::vm] Max frame depth reached: 9 [2022-10-28T08:43:11.402293443Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2586 of 400000 compute units [2022-10-28T08:43:11.402418355Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:11.436679671Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:43:11.437458839Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:43:11.440174674Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:11.440261335Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:43:11.440304766Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999999998523400, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7LRBB2rZaGX7ZfNapFUg1CE8mLcKcaakp5rEvSthSDeA, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.440501161Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.440665736Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:43:11.448595036Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:43:11.449057004Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:43:11.449842764Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2449 [2022-10-28T08:43:11.449862421Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:11.449876557Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2933 of 187933 compute units [2022-10-28T08:43:11.449996149Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:11.450406371Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8800 [2022-10-28T08:43:11.450423122Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:43:11.450434704Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 15557 of 200000 compute units [2022-10-28T08:43:11.450530853Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:43:11.492882568Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM invoke [1] [2022-10-28T08:43:11.494041591Z DEBUG solana_runtime::message_processor::stable_log] Program log: Fee Ix: UpdateFees(UpdateFeesParams { maker_fee_bps: 0, taker_fee_bps: 0 }) [2022-10-28T08:43:11.494493531Z DEBUG solana_runtime::message_processor::stable_log] Program log: 8 [2022-10-28T08:43:11.495392581Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:11.495483109Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 946560, space: 8, owner: 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM } [2022-10-28T08:43:11.495542930Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999999996479120, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: EkN6pjR2bAvrwrj7U6t7ZDnKTwJnSjFFH66r5RS9WxRJ, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.495816358Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.496048820Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 5275 [2022-10-28T08:43:11.496066924Z DEBUG solana_rbpf::vm] Max frame depth reached: 13 [2022-10-28T08:43:11.496082773Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM consumed 11099 of 200000 compute units [2022-10-28T08:43:11.496176337Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM success [2022-10-28T08:43:11.513941189Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:11.514100985Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 1002407040, space: 143896, owner: FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL } [2022-10-28T08:43:11.514257176Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999999995512560, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: E6fYimuV8545dp2Lz4ViiG9d818mTX5Y5xgGbDNAzeqz, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.514906171Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.612418688Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:43:11.613337034Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeMarketProductGroup [2022-10-28T08:43:11.616253682Z DEBUG solana_runtime::message_processor::stable_log] Program log: Creating the market collateral vault [2022-10-28T08:43:11.616951068Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:11.617006911Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:43:11.617050041Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999998993105520, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7uyGdcsoR14iDQKsXazjLMq5in75CJJ3Tb4BoazqJ2nG, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.617242649Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.617331374Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initializing the market collateral vault [2022-10-28T08:43:11.624827149Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:43:11.625305688Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount2 [2022-10-28T08:43:11.626383089Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3034 [2022-10-28T08:43:11.626424647Z DEBUG solana_rbpf::vm] Max frame depth reached: 9 [2022-10-28T08:43:11.626441758Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 3394 of 780235 compute units [2022-10-28T08:43:11.626558325Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:11.627163309Z DEBUG solana_runtime::message_processor::stable_log] Program log: sequence: 0 [2022-10-28T08:43:11.627240502Z DEBUG solana_runtime::message_processor::stable_log] Program log: E6fYimuV8545dp2Lz4ViiG9d818mTX5Y5xgGbDNAzeqz [2022-10-28T08:43:11.627624656Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 15941 [2022-10-28T08:43:11.627644332Z DEBUG solana_rbpf::vm] Max frame depth reached: 10 [2022-10-28T08:43:11.627659070Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 26623 of 800000 compute units [2022-10-28T08:43:11.628247633Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:43:11.628868266Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:11.628963363Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 3953280, space: 440, owner: 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr } [2022-10-28T08:43:11.629012033Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999998991066240, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 2s9heHNqHEDz5nZCkpK8r3T2KC8vjgvhBhjMXEpVMYUF, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.629222644Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.629305969Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:11.629348829Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 1002240, space: 16, owner: 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM } [2022-10-28T08:43:11.629403581Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999998987112960, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: DRTCVi2PwRcBan8D7uRUkvuDUMDmBmLC2Aw6Cs2ULPcc, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.629640330Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.661295676Z DEBUG solana_runtime::message_processor::stable_log] Program 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh invoke [1] [2022-10-28T08:43:11.662532894Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:11.662615928Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 1287600, space: 57, owner: 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh } [2022-10-28T08:43:11.662661232Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999998986105720, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 29E4oFNTGX5hubLzCbgDe4qkPJq5MxUTTXJiMtB4QZSR, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.662859010Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.663226873Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3372 [2022-10-28T08:43:11.663245478Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:11.663261698Z DEBUG solana_runtime::message_processor::stable_log] Program 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh consumed 6136 of 200000 compute units [2022-10-28T08:43:11.663351304Z DEBUG solana_runtime::message_processor::stable_log] Program 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh success [2022-10-28T08:43:11.679419955Z DEBUG solana_runtime::message_processor::stable_log] Program 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh invoke [1] [2022-10-28T08:43:11.680862955Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:11.680944026Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 1169280, space: 40, owner: 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh } [2022-10-28T08:43:11.681005731Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999998984813120, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 9roR76NNfkCdbtCwq5dPrdr1FpAzgvUdyMrfXUsy7yAS, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.681272406Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.681596658Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2833 [2022-10-28T08:43:11.681617818Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:11.681638416Z DEBUG solana_runtime::message_processor::stable_log] Program 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh consumed 5457 of 200000 compute units [2022-10-28T08:43:11.681744192Z DEBUG solana_runtime::message_processor::stable_log] Program 8opHzTAnfzRpPEx21XtnrVTX28YQuCpAjcn1PczScKh success [2022-10-28T08:43:11.730967924Z DEBUG solana_runtime::message_processor::stable_log] Program 8981bZYszfz1FrFVx7gcUm61RfawMoAHnURuERRJKdkq invoke [1] [2022-10-28T08:43:11.731565424Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeDerivative [2022-10-28T08:43:11.733667740Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:11.733726499Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2449920, space: 224, owner: 8981bZYszfz1FrFVx7gcUm61RfawMoAHnURuERRJKdkq } [2022-10-28T08:43:11.733784627Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999998983638840, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: NnN1KFDByyxpsd9Zv2byQcFMnGXYCJtFex53BnEpJMm, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.734037346Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.735149462Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 7695 [2022-10-28T08:43:11.735171784Z DEBUG solana_rbpf::vm] Max frame depth reached: 8 [2022-10-28T08:43:11.735185670Z DEBUG solana_runtime::message_processor::stable_log] Program 8981bZYszfz1FrFVx7gcUm61RfawMoAHnURuERRJKdkq consumed 13449 of 200000 compute units [2022-10-28T08:43:11.735316973Z DEBUG solana_runtime::message_processor::stable_log] Program 8981bZYszfz1FrFVx7gcUm61RfawMoAHnURuERRJKdkq success [2022-10-28T08:43:11.752987029Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:11.753066817Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2227200, space: 192, owner: aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e } [2022-10-28T08:43:11.753124164Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999998981163920, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 6HQ8Csf3AzbE38fAyan37uocYGpgbKFvBuezEs3LxxA2, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.753393855Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.753478131Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:11.753519608Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 794852880, space: 114075, owner: aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e } [2022-10-28T08:43:11.753575191Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999998978936720, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: BwRd9bFGSuRp9PcVd6ktFmLQWZFdDSYFA5C7zSSKsjbY, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.753815939Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.753900366Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:11.753941692Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 457021440, space: 65536, owner: aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e } [2022-10-28T08:43:11.753997115Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999998184083840, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: J3ThGQAtN7LBJ6wU9wY8VJixtdNB4oruT3Zw78eJXR9K, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.754234045Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.754310297Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:11.754351013Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 457021440, space: 65536, owner: aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e } [2022-10-28T08:43:11.754407337Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999997727062400, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 8fVQG6p1qFNGGN2wRP1Vn5bnEchJy1Fd4NFmdDCPN7dq, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.754679924Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.784212576Z DEBUG solana_runtime::message_processor::stable_log] Program aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e invoke [1] [2022-10-28T08:43:11.784576783Z DEBUG solana_runtime::message_processor::stable_log] Program log: Entrypoint [2022-10-28T08:43:11.784600467Z DEBUG solana_runtime::message_processor::stable_log] Program log: Beginning processing [2022-10-28T08:43:11.784621315Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction unpacked [2022-10-28T08:43:11.784639008Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: Create Market [2022-10-28T08:43:11.785541685Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3485 [2022-10-28T08:43:11.785555461Z DEBUG solana_rbpf::vm] Max frame depth reached: 5 [2022-10-28T08:43:11.785568845Z DEBUG solana_runtime::message_processor::stable_log] Program aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e consumed 3885 of 1000000 compute units [2022-10-28T08:43:11.785749351Z DEBUG solana_runtime::message_processor::stable_log] Program aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e success [2022-10-28T08:43:11.810505149Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:43:11.811279457Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeMarketProduct [2022-10-28T08:43:11.827704229Z DEBUG solana_runtime::message_processor::stable_log] Program log: seeds: [AccountInfo { key: NnN1KFDByyxpsd9Zv2byQcFMnGXYCJtFex53BnEpJMm, owner: 8981bZYszfz1FrFVx7gcUm61RfawMoAHnURuERRJKdkq, is_signer: false, is_writable: false, executable: false, rent_epoch: 0, lamports: 2449920, data.len: 224, data: da257e064e6729130100000000000000000000000000000002000000000000000100000000000000fd0000000000000000000000000000000000000000000000, .. }] [2022-10-28T08:43:11.837170545Z DEBUG solana_runtime::message_processor::stable_log] Program log: sequence: 1 [2022-10-28T08:43:11.837265902Z DEBUG solana_runtime::message_processor::stable_log] Program log: E6fYimuV8545dp2Lz4ViiG9d818mTX5Y5xgGbDNAzeqz [2022-10-28T08:43:11.837452268Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 83142 [2022-10-28T08:43:11.837467566Z DEBUG solana_rbpf::vm] Max frame depth reached: 23 [2022-10-28T08:43:11.837479298Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 85524 of 200000 compute units [2022-10-28T08:43:11.837592519Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:43:11.851518689Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:11.851663588Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 100000000, space: 0, owner: 11111111111111111111111111111111 } [2022-10-28T08:43:11.851756290Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999997270025960, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 9BcgAu6JtUkXEpoypah9RkUnMuLCaqwkEBykYMn5rRg5, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.852427287Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.875570199Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:43:11.876553265Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:43:11.879403390Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:11.879539453Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:43:11.879613971Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999997170020960, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: E6bMXeyrpi9FJYfr2qW3DSifnX8dMZo73ukqc8Tgy3mh, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.879887489Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.880059008Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:43:11.890683936Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:43:11.891207418Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:43:11.892182439Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2449 [2022-10-28T08:43:11.892216372Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:11.892233785Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2933 of 187845 compute units [2022-10-28T08:43:11.892343058Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:11.892839730Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8924 [2022-10-28T08:43:11.892868864Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:43:11.892886207Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 15681 of 200000 compute units [2022-10-28T08:43:11.893021318Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:43:11.908211436Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM invoke [1] [2022-10-28T08:43:11.909263610Z DEBUG solana_runtime::message_processor::stable_log] Program log: Fee Ix: InitializeTraderAcct [2022-10-28T08:43:11.910531886Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:11.910662970Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 946560, space: 8, owner: 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM } [2022-10-28T08:43:11.910712983Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999997167976680, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 4SJvm5WVNzJp6pgWj8RnLfmiY4GiVoyYG4ebWCSZqtsR, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.910906302Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.911118777Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3991 [2022-10-28T08:43:11.911135578Z DEBUG solana_rbpf::vm] Max frame depth reached: 11 [2022-10-28T08:43:11.911148983Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM consumed 6715 of 200000 compute units [2022-10-28T08:43:11.911264978Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM success [2022-10-28T08:43:11.929524859Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:11.929660531Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 443769600, space: 63632, owner: FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL } [2022-10-28T08:43:11.929765035Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999997167010120, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: DJVRCfit7328wdDeynDvnYQPhQP5gNPD8JtEUsYcmsBN, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:11.930206776Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:11.952351123Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:43:11.953092210Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeTraderRiskGroup [2022-10-28T08:43:12.006961721Z DEBUG solana_runtime::message_processor::stable_log] Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr invoke [2] [2022-10-28T08:43:12.007516061Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: CreateRiskStateAccount [2022-10-28T08:43:12.009050481Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [3] [2022-10-28T08:43:12.009153933Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 10300800, space: 1352, owner: 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr } [2022-10-28T08:43:12.009232649Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 9BcgAu6JtUkXEpoypah9RkUnMuLCaqwkEBykYMn5rRg5, account: RefCell { value: Account { lamports: 100000000, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 74wg7pe1jfwhCdKd9vAH85JpR6scjg6nJCaGygRApWGF, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.009526004Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.010281167Z DEBUG solana_runtime::message_processor::stable_log] Program log: Processing instruction create_risk_state_account [2022-10-28T08:43:12.010325098Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: initalize_variance_cache [2022-10-28T08:43:12.010864881Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 6506 [2022-10-28T08:43:12.010887914Z DEBUG solana_rbpf::vm] Max frame depth reached: 8 [2022-10-28T08:43:12.010903984Z DEBUG solana_runtime::message_processor::stable_log] Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr consumed 9470 of 390665 compute units [2022-10-28T08:43:12.011044765Z DEBUG solana_runtime::message_processor::stable_log] Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr success [2022-10-28T08:43:12.011542900Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8210 [2022-10-28T08:43:12.011562256Z DEBUG solana_rbpf::vm] Max frame depth reached: 9 [2022-10-28T08:43:12.011576663Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 19568 of 400000 compute units [2022-10-28T08:43:12.011941992Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:43:12.027846254Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:43:12.028315416Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: MintTo [2022-10-28T08:43:12.029187906Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2498 [2022-10-28T08:43:12.029211660Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.029228702Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2928 of 200000 compute units [2022-10-28T08:43:12.029368852Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.054683764Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:43:12.055858917Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:43:12.058413242Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:12.058487269Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:43:12.058546249Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999996723225520, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 7NXroJP7Nvo3fCSrjPuJAZrBdkmaJzH9JS4f3SsSs7XN, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.058816391Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.058984623Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:43:12.069572961Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:43:12.070088589Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:43:12.071171049Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2474 [2022-10-28T08:43:12.071198450Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.071215321Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2958 of 187845 compute units [2022-10-28T08:43:12.071326177Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.071931923Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8924 [2022-10-28T08:43:12.071970554Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:43:12.071990792Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 15706 of 200000 compute units [2022-10-28T08:43:12.072148395Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:43:12.093558704Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:43:12.094687732Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: MintTo [2022-10-28T08:43:12.095911936Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2594 [2022-10-28T08:43:12.095933025Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.095947752Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 3024 of 400000 compute units [2022-10-28T08:43:12.096041085Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.103145652Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:43:12.103669274Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: FreezeAccount [2022-10-28T08:43:12.104695000Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2270 [2022-10-28T08:43:12.104749671Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.104769077Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2680 of 396976 compute units [2022-10-28T08:43:12.104920278Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.112366620Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:12.112489789Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 100000000, space: 0, owner: 11111111111111111111111111111111 } [2022-10-28T08:43:12.112557334Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999996721166240, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: GwBrmP9KsG5ELsDYmMDZvbMEHc3MK7FcJZfdHpWbzHFV, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.112987774Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.141215847Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:43:12.142164629Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:43:12.144563876Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:12.144652210Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:43:12.144716560Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999996621161240, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: DtSoxgqmHaBF6PGvPqUXGqzHVafiAx9YQVw1cgwxeMg1, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.145003322Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.145211429Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:43:12.153935464Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:43:12.154358750Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:43:12.155179865Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2449 [2022-10-28T08:43:12.155198460Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.155212255Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2933 of 184845 compute units [2022-10-28T08:43:12.155293947Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.155753641Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8924 [2022-10-28T08:43:12.155773768Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:43:12.155788947Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 18681 of 200000 compute units [2022-10-28T08:43:12.155905343Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:43:12.180844878Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM invoke [1] [2022-10-28T08:43:12.181694877Z DEBUG solana_runtime::message_processor::stable_log] Program log: Fee Ix: InitializeTraderAcct [2022-10-28T08:43:12.182745167Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:12.182797034Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 946560, space: 8, owner: 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM } [2022-10-28T08:43:12.182847367Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999996619116960, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: GwPo2fCybRyJk57Qpr4sYoKsFsDw7BPukMozw3ftQ8Bn, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.183107290Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.183347667Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3991 [2022-10-28T08:43:12.183367033Z DEBUG solana_rbpf::vm] Max frame depth reached: 11 [2022-10-28T08:43:12.183384996Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM consumed 6715 of 200000 compute units [2022-10-28T08:43:12.183511220Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM success [2022-10-28T08:43:12.199446009Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:12.199617478Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 443769600, space: 63632, owner: FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL } [2022-10-28T08:43:12.199790930Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999996618150400, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: HDYvhE9Zvx8WyekN749cvkyUSv1DdZWgMpWTZaq2pNAZ, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.200510426Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.215506451Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:43:12.216126263Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeTraderRiskGroup [2022-10-28T08:43:12.226642176Z DEBUG solana_runtime::message_processor::stable_log] Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr invoke [2] [2022-10-28T08:43:12.227164937Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: CreateRiskStateAccount [2022-10-28T08:43:12.228783954Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [3] [2022-10-28T08:43:12.228867299Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 10300800, space: 1352, owner: 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr } [2022-10-28T08:43:12.228934664Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: GwBrmP9KsG5ELsDYmMDZvbMEHc3MK7FcJZfdHpWbzHFV, account: RefCell { value: Account { lamports: 100000000, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: imXMNAFs2uLLag36ZduhcmkFCd7PhCBfx3ZVGgkutSW, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.229228721Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.230010332Z DEBUG solana_runtime::message_processor::stable_log] Program log: Processing instruction create_risk_state_account [2022-10-28T08:43:12.230059884Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: initalize_variance_cache [2022-10-28T08:43:12.230609185Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 6506 [2022-10-28T08:43:12.230634642Z DEBUG solana_rbpf::vm] Max frame depth reached: 8 [2022-10-28T08:43:12.230653026Z DEBUG solana_runtime::message_processor::stable_log] Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr consumed 9470 of 390665 compute units [2022-10-28T08:43:12.230794449Z DEBUG solana_runtime::message_processor::stable_log] Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr success [2022-10-28T08:43:12.231315146Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8210 [2022-10-28T08:43:12.231336165Z DEBUG solana_rbpf::vm] Max frame depth reached: 9 [2022-10-28T08:43:12.231352936Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 19568 of 400000 compute units [2022-10-28T08:43:12.231593263Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:43:12.250037933Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:43:12.251046727Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: MintTo [2022-10-28T08:43:12.252747647Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2498 [2022-10-28T08:43:12.252785216Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.252815673Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2928 of 200000 compute units [2022-10-28T08:43:12.253009964Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.278485705Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:43:12.279241529Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:43:12.281480397Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:12.281530060Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:43:12.281573440Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999996174365800, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 61i1sBEa8CbHyFnJr4CeUhtLqVeqnYzh5rZb2wpAZn27, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.281763834Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.281896831Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:43:12.289039739Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:43:12.289402773Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:43:12.290185347Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2474 [2022-10-28T08:43:12.290202028Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.290213720Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2958 of 184845 compute units [2022-10-28T08:43:12.290278861Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.290681929Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8924 [2022-10-28T08:43:12.290699722Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:43:12.290711484Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 18706 of 200000 compute units [2022-10-28T08:43:12.290800630Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:43:12.312810242Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:43:12.313281357Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: MintTo [2022-10-28T08:43:12.314110998Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2594 [2022-10-28T08:43:12.314128691Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.314144461Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 3024 of 400000 compute units [2022-10-28T08:43:12.314243064Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.321076226Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:43:12.321544406Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: FreezeAccount [2022-10-28T08:43:12.322375951Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2270 [2022-10-28T08:43:12.322395687Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.322412338Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2680 of 396976 compute units [2022-10-28T08:43:12.322505722Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.333638761Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:12.333733267Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 100000000, space: 0, owner: 11111111111111111111111111111111 } [2022-10-28T08:43:12.333787999Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999996172306520, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: ELNS44PC4GytNjtEQX4Vsb8evLUDn9hbjrPWrEVHh88k, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.334282427Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.353290204Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:43:12.354297775Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:43:12.357215545Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:12.357304901Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:43:12.357368379Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999996072301520, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: fBuSPhMyPZBGsUzaBjJexPivfuCGCiuWAhcTbBoBfuq, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.357611060Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.357827191Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:43:12.365551018Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:43:12.365962142Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:43:12.366844541Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2449 [2022-10-28T08:43:12.366863105Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.366875819Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2933 of 187845 compute units [2022-10-28T08:43:12.366963412Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.367369466Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8924 [2022-10-28T08:43:12.367386758Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:43:12.367401716Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 15681 of 200000 compute units [2022-10-28T08:43:12.367506430Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:43:12.388729342Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM invoke [1] [2022-10-28T08:43:12.389640063Z DEBUG solana_runtime::message_processor::stable_log] Program log: Fee Ix: InitializeTraderAcct [2022-10-28T08:43:12.390812231Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:12.390909842Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 946560, space: 8, owner: 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM } [2022-10-28T08:43:12.390970765Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999996070257240, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 2Qnv3ZhqrEZByvDYQBY4XWHSAaS9ygKjjdgL6Z1t3da5, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.391259832Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.391606616Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 3991 [2022-10-28T08:43:12.391647121Z DEBUG solana_rbpf::vm] Max frame depth reached: 11 [2022-10-28T08:43:12.391669884Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM consumed 6715 of 200000 compute units [2022-10-28T08:43:12.391885234Z DEBUG solana_runtime::message_processor::stable_log] Program 4uQeVj5tqViQh7yWWGStvkEG1Zmhx6uasJtWCJziofM success [2022-10-28T08:43:12.407145650Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [1] [2022-10-28T08:43:12.407292572Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 443769600, space: 63632, owner: FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL } [2022-10-28T08:43:12.407466335Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999996069290680, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 2qwtSaE6TFZJtQoFXX5Q8NnYNjxKhYrHhZzHAUV9V4r4, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.408191011Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.422945448Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:43:12.423717131Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeTraderRiskGroup [2022-10-28T08:43:12.437561647Z DEBUG solana_runtime::message_processor::stable_log] Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr invoke [2] [2022-10-28T08:43:12.438100788Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: CreateRiskStateAccount [2022-10-28T08:43:12.439487564Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [3] [2022-10-28T08:43:12.439549550Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 10300800, space: 1352, owner: 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr } [2022-10-28T08:43:12.439611825Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: ELNS44PC4GytNjtEQX4Vsb8evLUDn9hbjrPWrEVHh88k, account: RefCell { value: Account { lamports: 100000000, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: J2xaDsDHMV61rjMWEhMXWxBHFDg6v2mrVVDpbMLM4uFb, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.439885363Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.440671293Z DEBUG solana_runtime::message_processor::stable_log] Program log: Processing instruction create_risk_state_account [2022-10-28T08:43:12.440739851Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: initalize_variance_cache [2022-10-28T08:43:12.441456672Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 6506 [2022-10-28T08:43:12.441497007Z DEBUG solana_rbpf::vm] Max frame depth reached: 8 [2022-10-28T08:43:12.441513468Z DEBUG solana_runtime::message_processor::stable_log] Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr consumed 9470 of 390665 compute units [2022-10-28T08:43:12.441661442Z DEBUG solana_runtime::message_processor::stable_log] Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr success [2022-10-28T08:43:12.442207527Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8210 [2022-10-28T08:43:12.442258151Z DEBUG solana_rbpf::vm] Max frame depth reached: 9 [2022-10-28T08:43:12.442286073Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 19568 of 400000 compute units [2022-10-28T08:43:12.442772576Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:43:12.474968580Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:43:12.475572231Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: MintTo [2022-10-28T08:43:12.476508981Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2498 [2022-10-28T08:43:12.476529840Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.476546120Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2928 of 200000 compute units [2022-10-28T08:43:12.476652328Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.504838944Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL invoke [1] [2022-10-28T08:43:12.505753924Z DEBUG solana_runtime::message_processor::stable_log] Program log: Create [2022-10-28T08:43:12.508450503Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:12.508538296Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2039280, space: 165, owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA } [2022-10-28T08:43:12.508596333Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999995625506080, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: DYCevKA9BUg1DH7QiYSgvtoPtxQCeUK1LCNS6CvJhZXB, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.508866646Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.509079651Z DEBUG solana_runtime::message_processor::stable_log] Program log: Initialize the associated token account [2022-10-28T08:43:12.520077690Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [2] [2022-10-28T08:43:12.520562611Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializeAccount3 [2022-10-28T08:43:12.521493179Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2474 [2022-10-28T08:43:12.521515401Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.521534707Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2958 of 187845 compute units [2022-10-28T08:43:12.521648197Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.522134571Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 8924 [2022-10-28T08:43:12.522154007Z DEBUG solana_rbpf::vm] Max frame depth reached: 12 [2022-10-28T08:43:12.522168724Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL consumed 15706 of 200000 compute units [2022-10-28T08:43:12.522310448Z DEBUG solana_runtime::message_processor::stable_log] Program ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL success [2022-10-28T08:43:12.545275575Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:43:12.545861814Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: MintTo [2022-10-28T08:43:12.546833028Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2594 [2022-10-28T08:43:12.546852304Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.546867141Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 3024 of 400000 compute units [2022-10-28T08:43:12.546965073Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.555127976Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA invoke [1] [2022-10-28T08:43:12.555641931Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: FreezeAccount [2022-10-28T08:43:12.556485307Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 2270 [2022-10-28T08:43:12.556505414Z DEBUG solana_rbpf::vm] Max frame depth reached: 6 [2022-10-28T08:43:12.556520613Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA consumed 2680 of 396976 compute units [2022-10-28T08:43:12.556612153Z DEBUG solana_runtime::message_processor::stable_log] Program TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA success [2022-10-28T08:43:12.580623023Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:43:12.581033786Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: SetupCapitalLimits [2022-10-28T08:43:12.582524815Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:12.582616986Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 1447680, space: 80, owner: FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL } [2022-10-28T08:43:12.582663924Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: B3GcakQv58eEpaiZjz58bs1Zp7K5HWo3iA9p9Wb2DWXG, account: RefCell { value: Account { lamports: 999995623451800, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: 8DpLeiTP5v2hPtjHbctqR6EjqJCWWo8VMkCMMVag6AT1, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.582853025Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.584214874Z DEBUG solana_runtime::message_processor::stable_log] Program log: Setup Withdrawal Limit: 0.0 [2022-10-28T08:43:12.584720153Z DEBUG solana_runtime::message_processor::stable_log] Program log: Setup Deposit Limit: 0.0 [2022-10-28T08:43:12.585082566Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 9988 [2022-10-28T08:43:12.585098135Z DEBUG solana_rbpf::vm] Max frame depth reached: 15 [2022-10-28T08:43:12.585110288Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 14502 of 200000 compute units [2022-10-28T08:43:12.585230922Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:43:12.614312000Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:43:12.614936259Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: InitializePrintTrade [2022-10-28T08:43:12.617031952Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 invoke [2] [2022-10-28T08:43:12.617102994Z TRACE solana_runtime::system_instruction_processor] process_instruction: CreateAccount { lamports: 2526480, space: 235, owner: FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL } [2022-10-28T08:43:12.617147537Z TRACE solana_runtime::system_instruction_processor] keyed_accounts: [KeyedAccount { is_signer: false, is_writable: false, key: 11111111111111111111111111111111, account: RefCell { value: Account { lamports: 1, data.len: 14, owner: NativeLoader1111111111111111111111111111111, executable: true, rent_epoch: 0, data: 73797374656d5f70726f6772616d } } }, KeyedAccount { is_signer: true, is_writable: true, key: 9BcgAu6JtUkXEpoypah9RkUnMuLCaqwkEBykYMn5rRg5, account: RefCell { value: Account { lamports: 89699200, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }, KeyedAccount { is_signer: true, is_writable: true, key: CpzjypY9T2ALw7NddHE8m4fjQXuckorx7zjZNPzX3uBG, account: RefCell { value: Account { lamports: 0, data.len: 0, owner: 11111111111111111111111111111111, executable: false, rent_epoch: 0 } } }] [2022-10-28T08:43:12.617394956Z DEBUG solana_runtime::message_processor::stable_log] Program 11111111111111111111111111111111 success [2022-10-28T08:43:12.619594732Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 11499 [2022-10-28T08:43:12.619619669Z DEBUG solana_rbpf::vm] Max frame depth reached: 8 [2022-10-28T08:43:12.619633424Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 14493 of 200000 compute units [2022-10-28T08:43:12.619828687Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL success [2022-10-28T08:43:12.653037041Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL invoke [1] [2022-10-28T08:43:12.654198639Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: SignPrintTrade [2022-10-28T08:43:12.657777416Z DEBUG solana_runtime::message_processor::stable_log] Program log: REMAINING ACCOUNTS LEN: 0 [2022-10-28T08:43:12.669272739Z DEBUG solana_runtime::message_processor::stable_log] Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr invoke [2] [2022-10-28T08:43:12.669762068Z DEBUG solana_runtime::message_processor::stable_log] Program log: Instruction: ValidateAccountHealth [2022-10-28T08:43:12.671276791Z DEBUG solana_runtime::message_processor::stable_log] Program log: AnchorError caused by account: covariance_metadata. Error Code: AccountNotEnoughKeys. Error Number: 3005. Error Message: Not enough account keys given to the instruction. [2022-10-28T08:43:12.671465061Z DEBUG solana_rbpf::vm] BPF instructions executed (interp): 5877 [2022-10-28T08:43:12.671479838Z DEBUG solana_rbpf::vm] Max frame depth reached: 14 [2022-10-28T08:43:12.671493624Z DEBUG solana_runtime::message_processor::stable_log] Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr consumed 6237 of 173631 compute units [2022-10-28T08:43:12.671545851Z DEBUG solana_runtime::message_processor::stable_log] Program 92wdgEqyiDKrcbFHoBTg8HxMj932xweRCKaciGSW3uMr failed: custom program error: 0xbbd [2022-10-28T08:43:12.671603428Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL consumed 32606 of 200000 compute units [2022-10-28T08:43:12.671649043Z DEBUG solana_runtime::message_processor::stable_log] Program FUfpR31LmcP1VSbz5zDaM7nxnH55iBHkpwusgrnhaFjL failed: custom program error: 0xbbd FAILEDfailures:
---- test_print_trade stdout ----
[programs/dexteritysdk/src/processor/market_product_group.rs:51] find_fees_discriminant_len = 1
clock 9roR76NNfkCdbtCwq5dPrdr1FpAzgvUdyMrfXUsy7yAS oracle 29E4oFNTGX5hubLzCbgDe4qkPJq5MxUTTXJiMtB4QZSR
Creating orderbook 0 (aaobKniTtDGvCZces7GH5UReLYP671bBkB96ahr9x3e)
[programs/dex/tests/test_print_trade.rs:35] operator_trg.cash_balance = Fractional {
m: 0,
exp: 0,
}
thread 'main' panicked at 'called Result::unwrap()
on an Err
value: Other(transport transaction error: Error processing Instruction 0: custom program error: 0xbbd)', programs/dex/tests/test_print_trade.rs:74:10
note: run with RUST_BACKTRACE=1
environment variable to display a backtrace
failures: test_print_trade
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.45s
This error means that the SDK doesn't pass additional accounts required by the risk engine
program.
And I couldn't find anywhere else in the SDK (or anywhere else in the dexterity repository) that would help me pass those accounts correctly