@@ -3,7 +3,7 @@ use crate::{
3
3
state:: { Auction , AuctionStatus , PreparedOrderResponse } ,
4
4
} ;
5
5
use anchor_lang:: prelude:: * ;
6
- use anchor_spl:: token;
6
+ use anchor_spl:: { associated_token :: get_associated_token_address , token} ;
7
7
8
8
#[ derive( Accounts ) ]
9
9
pub struct SettleAuctionComplete < ' info > {
@@ -16,8 +16,8 @@ pub struct SettleAuctionComplete<'info> {
16
16
17
17
#[ account(
18
18
mut ,
19
- associated_token :: mint = best_offer_token. mint,
20
- associated_token :: authority = executor,
19
+ token :: mint = best_offer_token. mint,
20
+ token :: authority = executor,
21
21
) ]
22
22
executor_token : Account < ' info , token:: TokenAccount > ,
23
23
@@ -89,17 +89,18 @@ fn handle_settle_auction_complete(
89
89
total_penalty : execute_penalty. map ( |v| v. saturating_add ( base_fee) ) ,
90
90
} ;
91
91
92
- let executor_token = & ctx. accounts . executor_token ;
93
- let best_offer_token = & ctx. accounts . best_offer_token ;
94
- let prepared_custody_token = & ctx. accounts . prepared_custody_token ;
95
- let token_program = & ctx. accounts . token_program ;
96
-
97
92
let prepared_order_response_signer_seeds = & [
98
93
PreparedOrderResponse :: SEED_PREFIX ,
99
94
prepared_order_response. seeds . fast_vaa_hash . as_ref ( ) ,
100
95
& [ prepared_order_response. seeds . bump ] ,
101
96
] ;
102
97
98
+ let executor = & ctx. accounts . executor ;
99
+ let executor_token = & ctx. accounts . executor_token ;
100
+ let best_offer_token = & ctx. accounts . best_offer_token ;
101
+ let token_program = & ctx. accounts . token_program ;
102
+ let prepared_custody_token = & ctx. accounts . prepared_custody_token ;
103
+
103
104
// We may deduct from this account if the winning participant was penalized.
104
105
let mut repayment = ctx. accounts . prepared_custody_token . amount ;
105
106
@@ -116,7 +117,7 @@ fn handle_settle_auction_complete(
116
117
executor_token. key( ) ,
117
118
best_offer_token. key( ) ,
118
119
MatchingEngineError :: ExecutorTokenMismatch
119
- )
120
+ ) ;
120
121
}
121
122
_ => {
122
123
// If there is a penalty, we want to return the lamports back to the person who paid to
@@ -125,7 +126,7 @@ fn handle_settle_auction_complete(
125
126
// The executor's intention here would be to collect the base fee to cover the cost to
126
127
// post the finalized VAA.
127
128
require_keys_eq ! (
128
- executor_token . owner ,
129
+ executor . key ( ) ,
129
130
prepared_order_response. prepared_by,
130
131
MatchingEngineError :: ExecutorNotPreparedBy
131
132
) ;
@@ -134,6 +135,15 @@ fn handle_settle_auction_complete(
134
135
// Because the auction participant was penalized for executing the order late, he
135
136
// will be deducted the base fee. This base fee will be sent to the executor token
136
137
// account if it is not the same as the best offer token account.
138
+
139
+ // We require that the executor token account be an ATA.
140
+ require_keys_eq ! (
141
+ executor_token. key( ) ,
142
+ get_associated_token_address( & executor_token. owner, & executor_token. mint) ,
143
+ ErrorCode :: AccountNotAssociatedTokenAccount
144
+ ) ;
145
+
146
+ // Transfer base fee to the executor.
137
147
token:: transfer (
138
148
CpiContext :: new_with_signer (
139
149
token_program. to_account_info ( ) ,
@@ -178,7 +188,7 @@ fn handle_settle_auction_complete(
178
188
token_program. to_account_info ( ) ,
179
189
token:: CloseAccount {
180
190
account : prepared_custody_token. to_account_info ( ) ,
181
- destination : ctx . accounts . executor . to_account_info ( ) ,
191
+ destination : executor. to_account_info ( ) ,
182
192
authority : prepared_order_response. to_account_info ( ) ,
183
193
} ,
184
194
& [ prepared_order_response_signer_seeds] ,
0 commit comments