-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomplete.rs
268 lines (246 loc) · 9.65 KB
/
complete.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
use crate::{
error::MatchingEngineError,
events::SettledTokenAccountInfo,
state::{Auction, AuctionStatus, PreparedOrderResponse},
utils,
};
use anchor_lang::prelude::*;
use anchor_spl::token::{self, TokenAccount};
#[derive(Accounts)]
#[event_cpi]
pub struct SettleAuctionComplete<'info> {
/// CHECK: Must equal prepared_order_response.prepared_by, who paid the rent to post the
/// finalized VAA.
#[account(
mut,
address = prepared_order_response.prepared_by,
)]
beneficiary: UncheckedAccount<'info>,
/// This token account will receive the base fee only if there was a penalty when executing the
/// order. If it does not exist when there is a penalty, this instruction handler will revert.
///
/// CHECK: This account must be the same as the base fee token in the prepared order response.
#[account(
mut,
address = prepared_order_response.base_fee_token,
)]
base_fee_token: UncheckedAccount<'info>,
/// Destination token account, which the redeemer may not own. But because the redeemer is a
/// signer and is the one encoded in the Deposit Fill message, he may have the tokens be sent
/// to any account he chooses (this one).
///
/// CHECK: This token account may exist. If it doesn't and there is a penalty, we will send all
/// of the tokens to the base fee token account.
#[account(
mut,
address = auction.info.as_ref().unwrap().best_offer_token,
)]
best_offer_token: UncheckedAccount<'info>,
#[account(
mut,
close = beneficiary,
seeds = [
PreparedOrderResponse::SEED_PREFIX,
prepared_order_response.seeds.fast_vaa_hash.as_ref()
],
bump = prepared_order_response.seeds.bump,
)]
prepared_order_response: Box<Account<'info, PreparedOrderResponse>>,
/// CHECK: Seeds must be \["prepared-custody"\, prepared_order_response.key()].
#[account(
mut,
seeds = [
crate::PREPARED_CUSTODY_TOKEN_SEED_PREFIX,
prepared_order_response.key().as_ref(),
],
bump,
)]
prepared_custody_token: Box<Account<'info, TokenAccount>>,
#[account(
mut,
seeds = [
Auction::SEED_PREFIX,
prepared_order_response.seeds.fast_vaa_hash.as_ref(),
],
bump = auction.bump,
)]
auction: Box<Account<'info, Auction>>,
token_program: Program<'info, token::Token>,
}
pub fn settle_auction_complete(ctx: Context<SettleAuctionComplete>) -> Result<()> {
match ctx.accounts.auction.status {
AuctionStatus::Completed {
slot: _,
execute_penalty,
} => handle_settle_auction_complete(ctx, execute_penalty),
_ => err!(MatchingEngineError::AuctionNotCompleted),
}
}
fn handle_settle_auction_complete(
ctx: Context<SettleAuctionComplete>,
execute_penalty: Option<u64>,
) -> Result<()> {
let prepared_order_response = &ctx.accounts.prepared_order_response;
let base_fee = prepared_order_response.base_fee;
ctx.accounts.auction.status = AuctionStatus::Settled {
fee: base_fee,
total_penalty: execute_penalty.map(|v| v.saturating_add(base_fee)),
};
let prepared_order_response_signer_seeds = &[
PreparedOrderResponse::SEED_PREFIX,
prepared_order_response.seeds.fast_vaa_hash.as_ref(),
&[prepared_order_response.seeds.bump],
];
let beneficiary = &ctx.accounts.beneficiary;
let base_fee_token = &ctx.accounts.base_fee_token;
let best_offer_token = &ctx.accounts.best_offer_token;
let token_program = &ctx.accounts.token_program;
let prepared_custody_token = &ctx.accounts.prepared_custody_token;
let repayment = ctx.accounts.prepared_custody_token.amount;
struct TokenAccountResult {
balance_before: u64,
amount: u64,
}
let (base_fee_result, best_offer_result) = match execute_penalty {
// When there is no penalty, we will give everything to the best offer token account.
None => {
// If the token account happens to not exist anymore, we will revert.
let best_offer_token_data =
utils::checked_deserialize_token_account(best_offer_token, &common::USDC_MINT)
.ok_or_else(|| MatchingEngineError::BestOfferTokenRequired)?;
(
None, // base_fee_result
TokenAccountResult {
balance_before: best_offer_token_data.amount,
amount: repayment,
}
.into(),
)
}
// Otherwise, determine how the repayment should be divvied up.
_ => {
match (
utils::checked_deserialize_token_account(base_fee_token, &common::USDC_MINT),
utils::checked_deserialize_token_account(best_offer_token, &common::USDC_MINT),
) {
(Some(base_fee_token_data), Some(best_offer_token_data)) => {
if base_fee_token.key() == best_offer_token.key() {
(
None, // base_fee_result
TokenAccountResult {
balance_before: best_offer_token_data.amount,
amount: repayment,
}
.into(),
)
} else {
(
TokenAccountResult {
balance_before: base_fee_token_data.amount,
amount: base_fee,
}
.into(),
TokenAccountResult {
balance_before: best_offer_token_data.amount,
amount: repayment.saturating_sub(base_fee),
}
.into(),
)
}
}
// If the best offer token account does not exist, we will give everything to the
// base fee token account.
(Some(base_fee_token_data), None) => (
TokenAccountResult {
balance_before: base_fee_token_data.amount,
amount: repayment,
}
.into(),
None, // best_offer_result
),
// If the base fee token account does not exist, we will give everything to the best
// offer token account.
(None, Some(best_offer_data)) => {
(
None, // base_fee_result
TokenAccountResult {
balance_before: best_offer_data.amount,
amount: repayment,
}
.into(),
)
}
// Otherwise revert.
_ => return err!(MatchingEngineError::BestOfferTokenRequired),
}
}
};
// Transfer base fee token his bounty if there are any.
let settled_base_fee_result = match base_fee_result {
Some(TokenAccountResult {
balance_before,
amount,
}) => {
token::transfer(
CpiContext::new_with_signer(
token_program.to_account_info(),
token::Transfer {
from: prepared_custody_token.to_account_info(),
to: base_fee_token.to_account_info(),
authority: prepared_order_response.to_account_info(),
},
&[prepared_order_response_signer_seeds],
),
amount,
)?;
SettledTokenAccountInfo {
key: base_fee_token.key(),
balance_after: balance_before.saturating_add(amount),
}
.into()
}
None => None,
};
// Transfer the funds back to the highest bidder if there are any.
let settled_best_offer_result = match best_offer_result {
Some(TokenAccountResult {
balance_before,
amount,
}) => {
token::transfer(
CpiContext::new_with_signer(
token_program.to_account_info(),
token::Transfer {
from: prepared_custody_token.to_account_info(),
to: best_offer_token.to_account_info(),
authority: prepared_order_response.to_account_info(),
},
&[prepared_order_response_signer_seeds],
),
amount,
)?;
SettledTokenAccountInfo {
key: best_offer_token.key(),
balance_after: balance_before.saturating_add(amount),
}
.into()
}
None => None,
};
emit_cpi!(crate::events::AuctionSettled {
fast_vaa_hash: ctx.accounts.auction.vaa_hash,
best_offer_token: settled_best_offer_result,
base_fee_token: settled_base_fee_result,
with_execute: Default::default(),
});
// Finally close the prepared custody token account.
token::close_account(CpiContext::new_with_signer(
token_program.to_account_info(),
token::CloseAccount {
account: prepared_custody_token.to_account_info(),
destination: beneficiary.to_account_info(),
authority: prepared_order_response.to_account_info(),
},
&[prepared_order_response_signer_seeds],
))
}