@@ -44,18 +44,21 @@ pub mod matching_engine {
44
44
use super :: * ;
45
45
46
46
/// This instruction is be used to generate the program's `custodian` and `auction_config`
47
- /// configs. It also reates the `owner` and `fee_recipient` accounts. Finally, it sets the upgrade
48
- /// authority to the `upgrade_manager_authority`. Upgrades are managed by the `upgrade_manager_program`.
47
+ /// configs. It also reates the `owner` and `fee_recipient` accounts. Finally, it sets the
48
+ /// upgrade authority to the `upgrade_manager_authority`. Upgrades are managed by the
49
+ /// `upgrade_manager_program`.
50
+ ///
49
51
/// # Arguments
50
52
///
51
- /// * `ctx` - `Initialize` context.
52
- /// * `auction_params ` - The auction parameters, see `auction_config.rs` .
53
+ /// * `ctx` - `Initialize` context.
54
+ /// * `args ` - Initialize args, which has the initial [AuctionParameters] .
53
55
pub fn initialize ( ctx : Context < Initialize > , args : InitializeArgs ) -> Result < ( ) > {
54
56
processor:: initialize ( ctx, args)
55
57
}
56
58
57
- /// This instruction is used to pause or unpause further processing of new auctions. Only the `owner`
58
- /// or `owner_assistant` can pause the program.
59
+ /// This instruction is used to pause or unpause further processing of new auctions. Only the
60
+ /// `owner` or `owner_assistant` can pause the program.
61
+ ///
59
62
/// # Arguments
60
63
///
61
64
/// * `ctx` - `SetPause` context.
@@ -64,8 +67,10 @@ pub mod matching_engine {
64
67
processor:: set_pause ( ctx, pause)
65
68
}
66
69
67
- /// This instruction is used to add a new Token Router endpoint from a foreign chain. The endpoint
68
- /// must be CCTP compatible. This instruction can only be called by the `owner` or `owner_assistant`.
70
+ /// This instruction is used to add a new Token Router endpoint from a foreign chain. The
71
+ /// endpoint must be CCTP compatible. This instruction can only be called by the `owner` or
72
+ /// `owner_assistant`.
73
+ ///
69
74
/// # Arguments
70
75
///
71
76
/// * `ctx` - `AddCctpRouterEndpoint` context.
@@ -80,6 +85,7 @@ pub mod matching_engine {
80
85
/// This instruction is used to add a new Local Router endpoint. Local means that the
81
86
/// Token Router program exists on Solana. This instruction can only be called by the
82
87
/// `owner` or `owner_assistant`.
88
+ ///
83
89
/// # Arguments
84
90
///
85
91
/// * `ctx` - `AddLocalRouterEndpoint` context.
@@ -88,8 +94,9 @@ pub mod matching_engine {
88
94
}
89
95
90
96
/// This instruction is used to disable a router endpoint. This instruction does not close the
91
- /// account, it only sets the `protocol` to `None` and clears the `address` and `mint_recipient`.
92
- /// This instruction can only be called by the `owner`.
97
+ /// account, it only sets the `protocol` to `None` and clears the `address` and
98
+ /// `mint_recipient`. This instruction can only be called by the `owner`.
99
+ ///
93
100
/// # Arguments
94
101
///
95
102
/// * `ctx` - `DisableRouterEndpoint` context.
@@ -100,6 +107,7 @@ pub mod matching_engine {
100
107
/// This instruction is used to update a CCTP router endpoint. It allows the caller to change
101
108
/// the `address`, `mint_recipient`, and `domain`. This instruction can only be called by the
102
109
/// `owner`.
110
+ ///
103
111
/// # Arguments
104
112
///
105
113
/// * `ctx` - `UpdateCctpRouterEndpoint` context.
@@ -113,6 +121,7 @@ pub mod matching_engine {
113
121
114
122
/// This instruction is used to update a Local router endpoint. It allows the caller to change
115
123
/// the `address` and `mint_recipient`. This instruction can only be called by the `owner`.
124
+ ///
116
125
/// # Arguments
117
126
///
118
127
/// * `ctx` - `UpdateLocalRouterEndpoint` context.
@@ -123,6 +132,7 @@ pub mod matching_engine {
123
132
/// This instruction sets the `pending_owner` field in the `Custodian` account. This instruction
124
133
/// can only be called by the `owner`. The `pending_owner` address must be valid, meaning it
125
134
/// cannot be the zero address or the current owner.
135
+ ///
126
136
/// # Arguments
127
137
///
128
138
/// * `ctx` - `SubmitOwnershipTransferRequest` context.
@@ -135,6 +145,7 @@ pub mod matching_engine {
135
145
/// This instruction confirms the ownership transfer request and sets the new `owner` in the
136
146
/// `Custodian` account. This instruction can only be called by the `pending_owner`. The
137
147
/// `pending_owner` must be the same as the `pending_owner` in the `Custodian` account.
148
+ ///
138
149
/// # Arguments
139
150
///
140
151
/// * `ctx` - `ConfirmOwnershipTransferRequest` context.
@@ -144,8 +155,9 @@ pub mod matching_engine {
144
155
processor:: confirm_ownership_transfer_request ( ctx)
145
156
}
146
157
147
- /// This instruction cancels an ownership transfer request by resetting the `pending_owner` field
148
- /// in the `Custodian` account. This instruction can only be called by the `owner`.
158
+ /// This instruction cancels an ownership transfer request by resetting the `pending_owner`
159
+ /// field in the `Custodian` account. This instruction can only be called by the `owner`.
160
+ ///
149
161
/// # Arguments
150
162
///
151
163
/// * `ctx` - `CancelOwnershipTransferRequest` context.
@@ -158,6 +170,7 @@ pub mod matching_engine {
158
170
/// This instruction is used to propose new auction parameters. A proposal cannot be enacted
159
171
/// until one epoch has passed. This instruction can only be called by the `owner` or
160
172
/// `owner_assistant`.
173
+ ///
161
174
/// # Arguments
162
175
///
163
176
/// * `ctx` - `ProposeAuctionParameters` context.
@@ -172,6 +185,7 @@ pub mod matching_engine {
172
185
/// This instruction is used to enact an existing auction update proposal. It can only be
173
186
/// executed after the `slot_enact_delay` has passed. This instruction can only be called by
174
187
/// the `owner` of the proposal.
188
+ ///
175
189
/// # Arguments
176
190
///
177
191
/// * `ctx` - `UpdateAuctionParameters` context.
@@ -181,24 +195,27 @@ pub mod matching_engine {
181
195
182
196
/// This instruction is used to close an existing proposal by closing the proposal account. This
183
197
/// instruction can only be called by the `owner` or `owner_assistant`.
198
+ ///
184
199
/// # Arguments
185
200
///
186
201
/// * `ctx` - `CloseProposal` context.
187
202
pub fn close_proposal ( ctx : Context < CloseProposal > ) -> Result < ( ) > {
188
203
processor:: close_proposal ( ctx)
189
204
}
190
205
191
- /// This instruction is used to update the `owner_assistant` field in the `Custodian` account. This
192
- /// instruction can only be called by the `owner`.
206
+ /// This instruction is used to update the `owner_assistant` field in the `Custodian` account.
207
+ /// This instruction can only be called by the `owner`.
208
+ ///
193
209
/// # Arguments
194
210
///
195
211
/// * `ctx` - `UpdateOwnerAssistant` context.
196
212
pub fn update_owner_assistant ( ctx : Context < UpdateOwnerAssistant > ) -> Result < ( ) > {
197
213
processor:: update_owner_assistant ( ctx)
198
214
}
199
215
200
- /// This instruction is used to update the `fee_recipient` field in the `Custodian` account. This
201
- /// instruction can only be called by the `owner` or `owner_assistant`.
216
+ /// This instruction is used to update the `fee_recipient` field in the `Custodian` account.
217
+ /// This instruction can only be called by the `owner` or `owner_assistant`.
218
+ ///
202
219
/// # Arguments
203
220
///
204
221
/// * `ctx` - `UpdateFeeRecipient` context.
@@ -208,6 +225,7 @@ pub mod matching_engine {
208
225
209
226
/// This instruction is used for executing logic during an upgrade. This instruction can only be
210
227
/// called by the `upgrade_manager_program`.
228
+ ///
211
229
/// # Arguments
212
230
///
213
231
/// * `ctx` - `Migrate` context.
@@ -220,9 +238,9 @@ pub mod matching_engine {
220
238
/// an auction-specific token custody account. This instruction can be called by anyone.
221
239
/// # Arguments
222
240
///
223
- /// * `ctx` - `PlaceInitialOfferCctp` context.
224
- /// * `offer_price` - The fee that the caller is willing to accept in order for fufilling the fast
225
- /// order. This fee is paid in USDC.
241
+ /// * `ctx` - `PlaceInitialOfferCctp` context.
242
+ /// * `offer_price` - The fee that the caller is willing to accept in order for fufilling the
243
+ /// fast order. This fee is paid in USDC.
226
244
pub fn place_initial_offer_cctp (
227
245
ctx : Context < PlaceInitialOfferCctp > ,
228
246
offer_price : u64 ,
@@ -232,20 +250,23 @@ pub mod matching_engine {
232
250
233
251
/// This instruction is used to improve an existing auction offer. The `offer_price` must be
234
252
/// greater than the current `offer_price` in the auction. This instruction will revert if the
235
- /// `offer_price` is less than the current `offer_price`. This instruction can be called by anyone.
253
+ /// `offer_price` is less than the current `offer_price`. This instruction can be called by
254
+ /// anyone.
255
+ ///
236
256
/// # Arguments
237
257
///
238
- /// * `ctx` - `ImproveOffer` context.
239
- /// * `offer_price` - The fee that the caller is willing to accept in order for fufilling the fast
240
- /// order. This fee is paid in USDC.
258
+ /// * `ctx` - `ImproveOffer` context.
259
+ /// * `offer_price` - The fee that the caller is willing to accept in order for fufilling the
260
+ /// fast order. This fee is paid in USDC.
241
261
pub fn improve_offer ( ctx : Context < ImproveOffer > , offer_price : u64 ) -> Result < ( ) > {
242
262
processor:: improve_offer ( ctx, offer_price)
243
263
}
244
264
245
265
/// This instruction is used to execute the fast order after the auction period has ended.
246
- /// It should be executed before the `grace_period` has ended, otherwise the `highest_bidder`
247
- /// will incur a penalty. Once executed, a CCTP transfer will be sent to the recipient encoded
248
- /// in the `FastMarketOrder` VAA on the target chain.
266
+ /// It should be executed before the `grace_period` has ended, otherwise the best offer will
267
+ /// incur a penalty. Once executed, a CCTP transfer will be sent to the recipient encoded in the
268
+ /// `FastMarketOrder` VAA on the target chain.
269
+ ///
249
270
/// # Arguments
250
271
///
251
272
/// * `ctx` - `ExecuteFastOrderCctp` context.
@@ -254,18 +275,21 @@ pub mod matching_engine {
254
275
}
255
276
256
277
/// This instruction is used to execute the fast order after the auction period has ended.
257
- /// It should be executed before the `grace_period` has ended, otherwise the `highest_bidder`
258
- /// will incur a penalty. Once executed, a `fast_fill` VAA will be emitted.
278
+ /// It should be executed before the `grace_period` has ended, otherwise the best offer will
279
+ /// incur a penalty. Once executed, a `FastFill` account will be created.
280
+ ///
259
281
/// # Arguments
260
282
///
261
283
/// * `ctx` - `ExecuteFastOrderLocal` context.
262
284
pub fn execute_fast_order_local ( ctx : Context < ExecuteFastOrderLocal > ) -> Result < ( ) > {
263
285
processor:: execute_fast_order_local ( ctx)
264
286
}
265
287
266
- /// This instruction is used to complete the fast fill after the `fast_fill` VAA has been
267
- /// emitted. The Token Router program on Solana will invoke this instruction to complete the
268
- /// fast fill. Tokens will be deposited into the local endpoint's custody account.
288
+ /// This instruction is used to complete the fast fill after the `FastFill` account has been
289
+ /// created. The Token Router program on Solana will invoke this instruction to complete the
290
+ /// fast fill, marking it as redeemed. Tokens will be deposited into the local endpoint's
291
+ /// custody account.
292
+ ///
269
293
/// # Arguments
270
294
///
271
295
/// * `ctx` - `CompleteFastFill` context.
@@ -274,9 +298,11 @@ pub mod matching_engine {
274
298
}
275
299
276
300
/// This instruction is used to prepare the order response for a CCTP transfer. This instruction
277
- /// will redeem the finalized transfer associated with a particular auction, and deposit the funds
278
- /// to the `prepared_custody_token` account that is created during execution. This instruction
279
- /// will create a `PreparedOrderResponse` account that will be used to settle the auction.
301
+ /// will redeem the finalized transfer associated with a particular auction, and deposit the
302
+ /// funds to the `prepared_custody_token` account that is created during execution. This
303
+ /// instruction will create a `PreparedOrderResponse` account that will be used to settle the
304
+ /// auction.
305
+ ///
280
306
/// # Arguments
281
307
///
282
308
/// * `ctx` - `PrepareOrderResponseCctp` context.
@@ -287,10 +313,11 @@ pub mod matching_engine {
287
313
processor:: prepare_order_response_cctp ( ctx, args)
288
314
}
289
315
290
- /// This instruction is used to settle the acution after the `FastMarketOrder` has been executed,
291
- /// and the `PreparedOrderResponse` has been created. This instruction will settle the auction
292
- /// by transferring the funds from the `prepared_custody_token` account to the `highest_bidder`
293
- /// account.
316
+ /// This instruction is used to settle the acution after the `FastMarketOrder` has been
317
+ /// executed, and the `PreparedOrderResponse` has been created. This instruction will settle the
318
+ /// auction by transferring the funds from the `prepared_custody_token` account to the best
319
+ /// offer account.
320
+ ///
294
321
/// # Arguments
295
322
///
296
323
/// * `ctx` - `SettleAuctionComplete` context.
@@ -299,20 +326,22 @@ pub mod matching_engine {
299
326
}
300
327
301
328
/// This instruction is used to route funds to the `recipient` for a `FastMarketOrder` with
302
- /// no corresponding auction on Solana. This instruction can be called by anyone, but the
303
- /// `base_fee` associated with relaying a finalized VAA will be paid to the `fee_recipient`.
304
- /// This instruction generates a `Fill` message.
329
+ /// no corresponding auction on Solana. This instruction can be called by anyone, but the sum of
330
+ /// `init_auction_fee` and `base_fee` associated with relaying a finalized VAA will be paid to
331
+ /// the `fee_recipient`. This instruction generates a `Fill` message.
332
+ ///
305
333
/// # Arguments
306
334
///
307
335
/// * `ctx` - `SettleAuctionNoneCctp` context.
308
336
pub fn settle_auction_none_cctp ( ctx : Context < SettleAuctionNoneCctp > ) -> Result < ( ) > {
309
337
processor:: settle_auction_none_cctp ( ctx)
310
338
}
311
339
312
- /// This instruction is used to settle a `FastMarketOrder` with no corresponding auction. The funds
313
- /// are routed to the `recipient` on the target chain by executing a CCTP transfer and sending a `Fill`
314
- /// message. This instruction can be called by anyone, but the `base_fee` associated with relaying a
315
- /// finalized VAA will be paid to the `fee_recipient`.
340
+ /// This instruction is used to settle a `FastMarketOrder` with no corresponding auction. This
341
+ /// instruction can be called by anyone, but the sum of `init_auction_fee` and `base_fee`
342
+ /// associated with relaying a finalized VAA will be paid to the `fee_recipient`. This
343
+ /// instruction creates a `FastFill` account.
344
+ ///
316
345
/// # Arguments
317
346
///
318
347
/// * `ctx` - `SettleAuctionNoneLocal` context.
@@ -322,6 +351,7 @@ pub mod matching_engine {
322
351
323
352
/// This instruction is used to create the first `AuctionHistory` account, whose PDA is derived
324
353
/// using ID == 0.
354
+ ///
325
355
/// # Arguments
326
356
///
327
357
/// * `ctx` - `CreateFirstAuctionHistory` context.
@@ -332,6 +362,7 @@ pub mod matching_engine {
332
362
/// This instruction is used to create a new `AuctionHistory` account. The PDA is derived using
333
363
/// its ID. A new history account can be created only when the current one is full (number of
334
364
/// entries equals the hard-coded max entries).
365
+ ///
335
366
/// # Arguments
336
367
///
337
368
/// * `ctx` - `CreateNewAuctionHistory` context.
@@ -350,19 +381,48 @@ pub mod matching_engine {
350
381
/// lamports by closing that account. And the protocol's fee recipient will be able to claim
351
382
/// lamports by closing the empty `Auction` account it creates when he calls any of the
352
383
/// `settle_auction_none_*` instructions.
384
+ ///
353
385
/// # Arguments
354
386
///
355
387
/// * `ctx` - `AddAuctionHistoryEntry` context.
356
388
pub fn add_auction_history_entry ( ctx : Context < AddAuctionHistoryEntry > ) -> Result < ( ) > {
357
389
processor:: add_auction_history_entry ( ctx)
358
390
}
359
391
392
+ /// This instruction is used to reserve a sequence number for a fast fill. Fast fills are orders
393
+ /// that have been fulfilled and are destined for Solana and are seeded by source chain, order
394
+ /// sender and sequence number (similar to how Wormhole VAAs are identified by emitter chain,
395
+ /// emitter address and sequence number).
396
+ ///
397
+ /// Prior to executing `execute_fast_order_local` after the duration of an auction, the winning
398
+ /// auction participant should call this instruction to reserve the fast fill's sequence number.
399
+ /// This sequence number is warehoused in the `ReservedFastFillSequence` account and will be
400
+ /// closed when the order is executed.
401
+ ///
402
+ /// Auction participants can listen to the `FastFillSequenceReserved` event to track when he
403
+ /// (or associated payer) called this instruction so he can execute local orders easily.
404
+ ///
405
+ /// # Arguments
406
+ ///
407
+ /// * `ctx` - `ReserveFastFillSequenceActiveAuction` context.
360
408
pub fn reserve_fast_fill_sequence_active_auction (
361
409
ctx : Context < ReserveFastFillSequenceActiveAuction > ,
362
410
) -> Result < ( ) > {
363
411
processor:: reserve_fast_fill_sequence_active_auction ( ctx)
364
412
}
365
-
413
+ /// This instruction is used to reserve a sequence number for a fast fill. Fast fills are orders
414
+ /// that have been fulfilled and are destined for Solana and are seeded by source chain, order
415
+ /// sender and sequence number (similar to how Wormhole VAAs are identified by emitter chain,
416
+ /// emitter address and sequence number).
417
+ ///
418
+ /// Prior to executing `settle_auction_none_local` if there is no auction, whomever prepared the
419
+ /// order response should call this instruction to reserve the fast fill's sequence number.
420
+ /// This sequence number is warehoused in the `ReservedFastFillSequence` account and will be
421
+ /// closed when the funds are finally settled.
422
+ ///
423
+ /// # Arguments
424
+ ///
425
+ /// * `ctx` - `ReserveFastFillSequenceNoAuction` context.
366
426
pub fn reserve_fast_fill_sequence_no_auction (
367
427
ctx : Context < ReserveFastFillSequenceNoAuction > ,
368
428
) -> Result < ( ) > {
0 commit comments