Skip to content

Commit 906b1aa

Browse files
committed
solana: emit -> emit_cpi
1 parent ddded3b commit 906b1aa

File tree

26 files changed

+444
-104
lines changed

26 files changed

+444
-104
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
use anchor_lang::prelude::*;
2+
3+
use crate::composite::*;
4+
5+
#[derive(Accounts)]
6+
pub struct InitEventSubscription<'info> {
7+
#[account(mut)]
8+
payer: Signer<'info>,
9+
10+
admin: OwnerOnly<'info>,
11+
12+
/// This account will be serialized with an event, so its discriminator will change with every
13+
/// update.
14+
///
15+
/// CHECK: Mutable, must have seeds \["event"\].
16+
#[account(
17+
init,
18+
payer = payer,
19+
space = 10_240,
20+
seeds = [b"event"],
21+
bump,
22+
)]
23+
event_subscription: UncheckedAccount<'info>,
24+
25+
system_program: Program<'info, System>,
26+
}

solana/programs/matching-engine/src/processor/admin/propose/auction_parameters.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ use crate::{
66
use anchor_lang::prelude::*;
77

88
#[derive(Accounts)]
9+
#[event_cpi]
910
pub struct ProposeAuctionParameters<'info> {
1011
#[account(mut)]
1112
payer: Signer<'info>,
@@ -56,7 +57,7 @@ pub fn propose_auction_parameters(
5657
)?;
5758

5859
// Emit event reflecting the proposal.
59-
emit!(crate::events::Proposed { action });
60+
emit_cpi!(crate::events::Proposed { action });
6061

6162
// Done.
6263
Ok(())

solana/programs/matching-engine/src/processor/admin/update/auction_parameters.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ use crate::{
66
use anchor_lang::prelude::*;
77

88
#[derive(Accounts)]
9+
#[event_cpi]
910
pub struct UpdateAuctionParameters<'info> {
1011
#[account(mut)]
1112
payer: Signer<'info>,
@@ -70,7 +71,7 @@ pub fn update_auction_parameters(ctx: Context<UpdateAuctionParameters>) -> Resul
7071
let action = ctx.accounts.proposal.action;
7172

7273
// Emit event to reflect enacting the proposal.
73-
emit!(crate::events::Enacted { action });
74+
emit_cpi!(crate::events::Enacted { action });
7475

7576
match action {
7677
ProposalAction::UpdateAuctionParameters { id, parameters } => {

solana/programs/matching-engine/src/processor/auction/execute_fast_order/cctp.rs

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ use common::{wormhole_cctp_solana, wormhole_io::TypePrefixedPayload};
99

1010
/// Accounts required for [execute_fast_order_cctp].
1111
#[derive(Accounts)]
12+
#[event_cpi]
1213
pub struct ExecuteFastOrderCctp<'info> {
1314
#[account(mut)]
1415
payer: Signer<'info>,
@@ -79,6 +80,7 @@ pub fn handle_execute_fast_order_cctp(
7980
let super::PreparedOrderExecution {
8081
user_amount: amount,
8182
fill,
83+
order_executed_event,
8284
} = super::handle_execute_fast_order(
8385
&mut ctx.accounts.execute_order,
8486
&ctx.accounts.custodian,
@@ -182,6 +184,10 @@ pub fn handle_execute_fast_order_cctp(
182184
},
183185
)?;
184186

187+
// Emit the order executed event, which liquidators can listen to if this execution ended up
188+
// being penalized so they can collect the base fee at settlement.
189+
emit_cpi!(order_executed_event);
190+
185191
// Finally close the account since it is no longer needed.
186192
token::close_account(CpiContext::new_with_signer(
187193
token_program.to_account_info(),

solana/programs/matching-engine/src/processor/auction/execute_fast_order/local.rs

+7
Original file line numberDiff line numberDiff line change
@@ -98,19 +98,26 @@ pub fn execute_fast_order_local(ctx: Context<ExecuteFastOrderLocal>) -> Result<(
9898
let super::PreparedOrderExecution {
9999
user_amount: amount,
100100
fill,
101+
order_executed_event,
101102
} = super::handle_execute_fast_order(
102103
&mut ctx.accounts.execute_order,
103104
&ctx.accounts.custodian,
104105
&ctx.accounts.token_program,
105106
)?;
106107

108+
// Emit the order executed event, which liquidators can listen to if this execution ended up
109+
// being penalized so they can collect the base fee at settlement.
110+
emit_cpi!(order_executed_event);
111+
107112
let fast_fill = FastFill::new(
108113
fill,
109114
ctx.accounts.reserved_sequence.fast_fill_seeds.sequence,
110115
ctx.bumps.fast_fill,
111116
ctx.accounts.payer.key(),
112117
amount,
113118
);
119+
120+
// Emit the fast fill.
114121
emit_cpi!(crate::events::LocalFastOrderFilled {
115122
seeds: fast_fill.seeds,
116123
info: fast_fill.info,

solana/programs/matching-engine/src/processor/auction/execute_fast_order/mod.rs

+11-11
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ pub use local::*;
77
use crate::{
88
composite::*,
99
error::MatchingEngineError,
10+
events::OrderExecuted,
1011
state::{Auction, AuctionStatus, MessageProtocol},
1112
utils::{self, auction::DepositPenalty},
1213
};
@@ -20,6 +21,7 @@ use common::messages::{
2021
struct PreparedOrderExecution {
2122
pub user_amount: u64,
2223
pub fill: Fill,
24+
pub order_executed_event: OrderExecuted,
2325
}
2426

2527
fn handle_execute_fast_order<'info>(
@@ -40,7 +42,7 @@ fn handle_execute_fast_order<'info>(
4042
.unwrap()
4143
.to_fast_market_order_unchecked();
4244

43-
let (user_amount, new_status) = {
45+
let (user_amount, new_status, order_executed_event) = {
4446
let auction_info = auction.info.as_ref().unwrap();
4547
let current_slot = Clock::get().unwrap().slot;
4648

@@ -205,22 +207,19 @@ fn handle_execute_fast_order<'info>(
205207
custodian.key().into(),
206208
)?;
207209

208-
// Emit the order executed event, which liquidators can listen to if this execution ended up
209-
// being penalized so they can collect the base fee at settlement.
210-
emit!(crate::events::OrderExecuted {
211-
auction: auction.key(),
212-
vaa: fast_vaa.key(),
213-
source_chain: auction_info.source_chain,
214-
target_protocol: auction.target_protocol,
215-
penalized,
216-
});
217-
218210
(
219211
user_amount,
220212
AuctionStatus::Completed {
221213
slot: current_slot,
222214
execute_penalty: if penalized { penalty.into() } else { None },
223215
},
216+
OrderExecuted {
217+
auction: auction.key(),
218+
vaa: fast_vaa.key(),
219+
source_chain: auction_info.source_chain,
220+
target_protocol: auction.target_protocol,
221+
penalized,
222+
},
224223
)
225224
};
226225

@@ -238,5 +237,6 @@ fn handle_execute_fast_order<'info>(
238237
.try_into()
239238
.map_err(|_| MatchingEngineError::RedeemerMessageTooLarge)?,
240239
},
240+
order_executed_event,
241241
})
242242
}

solana/programs/matching-engine/src/processor/auction/offer/improve.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ use common::TRANSFER_AUTHORITY_SEED_PREFIX;
55

66
#[derive(Accounts)]
77
#[instruction(offer_price: u64)]
8+
#[event_cpi]
89
pub struct ImproveOffer<'info> {
910
/// The auction participant needs to set approval to this PDA.
1011
///
@@ -134,7 +135,7 @@ pub fn improve_offer(ctx: Context<ImproveOffer>, offer_price: u64) -> Result<()>
134135
let info = auction.info.as_ref().unwrap();
135136

136137
// Emit event for auction participants to listen to.
137-
emit!(crate::events::AuctionUpdated {
138+
emit_cpi!(crate::utils::log_emit(crate::events::AuctionUpdated {
138139
config_id: info.config_id,
139140
auction: auction.key(),
140141
vaa: Default::default(),
@@ -148,7 +149,7 @@ pub fn improve_offer(ctx: Context<ImproveOffer>, offer_price: u64) -> Result<()>
148149
total_deposit: info.total_deposit(),
149150
max_offer_price_allowed: utils::auction::compute_min_allowed_offer(config, info)
150151
.checked_sub(1),
151-
});
152+
}));
152153
}
153154

154155
// Done.

solana/programs/matching-engine/src/processor/auction/offer/place_initial/cctp.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ use common::{messages::raw::LiquidityLayerMessage, TRANSFER_AUTHORITY_SEED_PREFI
1010

1111
#[derive(Accounts)]
1212
#[instruction(offer_price: u64)]
13+
#[event_cpi]
1314
pub struct PlaceInitialOfferCctp<'info> {
1415
#[account(mut)]
1516
payer: Signer<'info>,
@@ -92,7 +93,7 @@ pub struct PlaceInitialOfferCctp<'info> {
9293
)]
9394
auction: Box<Account<'info, Auction>>,
9495

95-
offer_token: Account<'info, token::TokenAccount>,
96+
offer_token: Box<Account<'info, token::TokenAccount>>,
9697

9798
#[account(
9899
init,
@@ -105,7 +106,7 @@ pub struct PlaceInitialOfferCctp<'info> {
105106
],
106107
bump,
107108
)]
108-
auction_custody_token: Account<'info, token::TokenAccount>,
109+
auction_custody_token: Box<Account<'info, token::TokenAccount>>,
109110

110111
usdc: Usdc<'info>,
111112

@@ -166,7 +167,7 @@ pub fn place_initial_offer_cctp(
166167
let info = ctx.accounts.auction.info.as_ref().unwrap();
167168

168169
// Emit event for auction participants to listen to.
169-
emit!(crate::events::AuctionUpdated {
170+
emit_cpi!(crate::utils::log_emit(crate::events::AuctionUpdated {
170171
config_id: info.config_id,
171172
auction: ctx.accounts.auction.key(),
172173
vaa: ctx.accounts.fast_order_path.fast_vaa.key().into(),
@@ -180,7 +181,7 @@ pub fn place_initial_offer_cctp(
180181
total_deposit: info.total_deposit(),
181182
max_offer_price_allowed: utils::auction::compute_min_allowed_offer(config, info)
182183
.checked_sub(1),
183-
});
184+
}));
184185

185186
// Finally transfer tokens from the offer authority's token account to the
186187
// auction's custody account.

solana/programs/matching-engine/src/processor/auction/settle/complete.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ use anchor_lang::prelude::*;
88
use anchor_spl::token::{self, TokenAccount};
99

1010
#[derive(Accounts)]
11+
#[event_cpi]
1112
pub struct SettleAuctionComplete<'info> {
1213
/// CHECK: Must equal prepared_order_response.prepared_by, who paid the rent to post the
1314
/// finalized VAA.
@@ -247,7 +248,7 @@ fn handle_settle_auction_complete(
247248
None => None,
248249
};
249250

250-
emit!(crate::events::AuctionSettled {
251+
emit_cpi!(crate::events::AuctionSettled {
251252
auction: ctx.accounts.auction.key(),
252253
best_offer_token: settled_best_offer_result,
253254
base_fee_token: settled_base_fee_result,

solana/programs/matching-engine/src/processor/auction/settle/none/cctp.rs

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ use common::{wormhole_cctp_solana, wormhole_io::TypePrefixedPayload};
99

1010
/// Accounts required for [settle_auction_none_cctp].
1111
#[derive(Accounts)]
12+
#[event_cpi]
1213
pub struct SettleAuctionNoneCctp<'info> {
1314
#[account(mut)]
1415
payer: Signer<'info>,
@@ -102,6 +103,7 @@ fn handle_settle_auction_none_cctp(
102103
let super::SettledNone {
103104
user_amount: amount,
104105
fill,
106+
auction_settled_event,
105107
} = super::settle_none_and_prepare_fill(super::SettleNoneAndPrepareFill {
106108
prepared_order_response: &mut ctx.accounts.prepared.order_response,
107109
prepared_custody_token,
@@ -209,6 +211,9 @@ fn handle_settle_auction_none_cctp(
209211
},
210212
)?;
211213

214+
// Emit an event indicating that the auction has been settled.
215+
emit_cpi!(auction_settled_event);
216+
212217
// Finally close the account since it is no longer needed.
213218
token::close_account(CpiContext::new_with_signer(
214219
token_program.to_account_info(),

solana/programs/matching-engine/src/processor/auction/settle/none/local.rs

+6
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ pub fn settle_auction_none_local(ctx: Context<SettleAuctionNoneLocal>) -> Result
126126
let super::SettledNone {
127127
user_amount: amount,
128128
fill,
129+
auction_settled_event,
129130
} = super::settle_none_and_prepare_fill(super::SettleNoneAndPrepareFill {
130131
prepared_order_response: &mut ctx.accounts.prepared.order_response,
131132
prepared_custody_token,
@@ -135,13 +136,18 @@ pub fn settle_auction_none_local(ctx: Context<SettleAuctionNoneLocal>) -> Result
135136
token_program,
136137
})?;
137138

139+
// Emit an event indicating that the auction has been settled.
140+
emit_cpi!(auction_settled_event);
141+
138142
let fast_fill = FastFill::new(
139143
fill,
140144
ctx.accounts.reserved_sequence.fast_fill_seeds.sequence,
141145
ctx.bumps.fast_fill,
142146
ctx.accounts.payer.key(),
143147
amount,
144148
);
149+
150+
// Emit the fast fill.
145151
emit_cpi!(crate::events::LocalFastOrderFilled {
146152
seeds: fast_fill.seeds,
147153
info: fast_fill.info,

solana/programs/matching-engine/src/processor/auction/settle/none/mod.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ pub use local::*;
66

77
use crate::{
88
composite::*,
9+
events::AuctionSettled,
910
state::{Auction, AuctionStatus, PreparedOrderResponse},
1011
};
1112
use anchor_lang::prelude::*;
@@ -24,6 +25,7 @@ struct SettleNoneAndPrepareFill<'ctx, 'info> {
2425
struct SettledNone {
2526
user_amount: u64,
2627
fill: Fill,
28+
auction_settled_event: AuctionSettled,
2729
}
2830

2931
fn settle_none_and_prepare_fill(accounts: SettleNoneAndPrepareFill<'_, '_>) -> Result<SettledNone> {
@@ -81,16 +83,16 @@ fn settle_none_and_prepare_fill(accounts: SettleNoneAndPrepareFill<'_, '_>) -> R
8183
total_penalty: None,
8284
};
8385

84-
emit!(crate::events::AuctionSettled {
86+
let auction_settled_event = AuctionSettled {
8587
auction: auction.key(),
8688
best_offer_token: Default::default(),
8789
base_fee_token: crate::events::SettledTokenAccountInfo {
8890
key: fee_recipient_token.key(),
89-
balance_after: fee_recipient_token.amount.saturating_add(fee)
91+
balance_after: fee_recipient_token.amount.saturating_add(fee),
9092
}
9193
.into(),
9294
with_execute: auction.target_protocol.into(),
93-
});
95+
};
9496

9597
// TryInto is safe to unwrap here because the redeemer message had to have been able to fit in
9698
// the prepared order response account (so it would not have exceed u32::MAX).
@@ -105,5 +107,6 @@ fn settle_none_and_prepare_fill(accounts: SettleNoneAndPrepareFill<'_, '_>) -> R
105107
redeemer: prepared_order_response.redeemer,
106108
redeemer_message,
107109
},
110+
auction_settled_event,
108111
})
109112
}

solana/programs/matching-engine/src/processor/fast_fill/complete.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ use common::wormhole_cctp_solana::wormhole::SOLANA_CHAIN;
99

1010
/// Accounts required for [complete_fast_fill].
1111
#[derive(Accounts)]
12+
#[event_cpi]
1213
pub struct CompleteFastFill<'info> {
1314
/// Custodian, which may be used in the future.
1415
custodian: CheckedCustodian<'info>,
@@ -81,7 +82,7 @@ pub fn complete_fast_fill(ctx: Context<CompleteFastFill>) -> Result<()> {
8182
ctx.accounts.fast_fill.redeemed = true;
8283

8384
// Emit event that the fast fill is redeemed. Listeners can close this account.
84-
emit!(crate::events::FastFillRedeemed {
85+
emit_cpi!(crate::events::FastFillRedeemed {
8586
prepared_by: ctx.accounts.fast_fill.info.prepared_by,
8687
fast_fill: ctx.accounts.fast_fill.key(),
8788
});

0 commit comments

Comments
 (0)