The program instructions can be called in two ways:

1- via CPI (in this case another program calls to the to do_message instruction). This one is the more efficient. For this you need:

pub messages_program: UncheckedAccount<'info> ```

[[test.validator.clone]] address = "ALepH1n9jxScbz45aZhBYVa35zxBNbKSvL6rWQpb4snc" ```

EXAMPLE

2- including the aleph message instruction inside the transaction in the client, so its creating an specific instruction inside an transaction.

current related discussion in the anchor repo to improve this: add emit_cpi to allow programs to store logs in CPI data:

https://github.com/coral-xyz/anchor/pull/2438

https://github.com/coral-xyz/anchor/issues/2408

https://github.com/coral-xyz/anchor/pull/2438#discussion_r1155121788

Anchor (Solana framework) events are emitted through logs. There are two options:

Benchmark of these options: https://github.com/coral-xyz/anchor/issues/863#issuecomment-1101779506