@@ -11,19 +11,19 @@ use anchor_spl::{
11
11
12
12
#[ derive( Accounts ) ]
13
13
pub struct SettleAuctionComplete < ' info > {
14
- /// CHECK: To prevent squatters from preparing order responses on behalf of the auction winner,
15
- /// we will always reward the owner of the executor token account with the lamports from the
16
- /// prepared order response and its custody token account when we close these accounts. This
17
- /// means we disregard the `prepared_by` field in the prepared order response.
18
- #[ account( mut ) ]
14
+ /// CHECK: Must equal prepared_order_response.prepared_by, who paid the rent to post the
15
+ /// finalized VAA.
16
+ #[ account(
17
+ mut ,
18
+ address = prepared_order_response. prepared_by,
19
+ ) ]
19
20
executor : UncheckedAccount < ' info > ,
20
21
21
22
#[ account(
22
23
mut ,
23
24
token:: mint = common:: USDC_MINT ,
24
- token:: authority = executor,
25
25
) ]
26
- executor_token : Account < ' info , TokenAccount > ,
26
+ executor_token : Box < Account < ' info , TokenAccount > > ,
27
27
28
28
/// Destination token account, which the redeemer may not own. But because the redeemer is a
29
29
/// signer and is the one encoded in the Deposit Fill message, he may have the tokens be sent
@@ -46,7 +46,7 @@ pub struct SettleAuctionComplete<'info> {
46
46
] ,
47
47
bump = prepared_order_response. seeds. bump,
48
48
) ]
49
- prepared_order_response : Account < ' info , PreparedOrderResponse > ,
49
+ prepared_order_response : Box < Account < ' info , PreparedOrderResponse > > ,
50
50
51
51
/// CHECK: Seeds must be \["prepared-custody"\, prepared_order_response.key()].
52
52
#[ account(
@@ -57,7 +57,7 @@ pub struct SettleAuctionComplete<'info> {
57
57
] ,
58
58
bump,
59
59
) ]
60
- prepared_custody_token : Account < ' info , TokenAccount > ,
60
+ prepared_custody_token : Box < Account < ' info , TokenAccount > > ,
61
61
62
62
#[ account(
63
63
mut ,
@@ -67,7 +67,7 @@ pub struct SettleAuctionComplete<'info> {
67
67
] ,
68
68
bump = auction. bump,
69
69
) ]
70
- auction : Account < ' info , Auction > ,
70
+ auction : Box < Account < ' info , Auction > > ,
71
71
72
72
token_program : Program < ' info , token:: Token > ,
73
73
}
@@ -115,19 +115,6 @@ fn handle_settle_auction_complete(
115
115
116
116
let ( executor_result, best_offer_result) = match execute_penalty {
117
117
None => {
118
- // If there is no penalty, we require that the executor token and best offer token be
119
- // equal. The winning offer should not be penalized for calling this instruction when he
120
- // has executed the order within the grace period.
121
- //
122
- // By requiring that these pubkeys are equal, we enforce that the owner of the best
123
- // offer token gets rewarded the lamports from the prepared order response and its
124
- // custody account.
125
- require_keys_eq ! (
126
- executor_token. key( ) ,
127
- best_offer_token. key( ) ,
128
- MatchingEngineError :: ExecutorTokenMismatch
129
- ) ;
130
-
131
118
// If the token account happens to not exist anymore, we will revert.
132
119
match TokenAccount :: try_deserialize ( & mut & best_offer_token. data . borrow ( ) [ ..] ) {
133
120
Ok ( best_offer) => (
@@ -142,17 +129,6 @@ fn handle_settle_auction_complete(
142
129
}
143
130
}
144
131
_ => {
145
- // If there is a penalty, we want to return the lamports back to the person who paid to
146
- // create the prepared order response and custody token accounts.
147
- //
148
- // The executor's intention here would be to collect the base fee to cover the cost to
149
- // post the finalized VAA.
150
- require_keys_eq ! (
151
- executor. key( ) ,
152
- prepared_order_response. prepared_by,
153
- MatchingEngineError :: ExecutorNotPreparedBy
154
- ) ;
155
-
156
132
// If the token account happens to not exist anymore, we will give everything to the
157
133
// executor.
158
134
match TokenAccount :: try_deserialize ( & mut & best_offer_token. data . borrow ( ) [ ..] ) {
@@ -182,6 +158,13 @@ fn handle_settle_auction_complete(
182
158
ErrorCode :: AccountNotAssociatedTokenAccount
183
159
) ;
184
160
161
+ // And enforce that the owner of this ATA is the executor.
162
+ require_keys_eq ! (
163
+ executor. key( ) ,
164
+ executor_token. owner,
165
+ ErrorCode :: ConstraintTokenOwner ,
166
+ ) ;
167
+
185
168
(
186
169
TokenAccountResult {
187
170
balance_before : executor_token. amount ,
0 commit comments