Skip to content

Commit 62b670b

Browse files
committed
solana: clean up lib docstrings
1 parent f9766b1 commit 62b670b

File tree

3 files changed

+326
-136
lines changed

3 files changed

+326
-136
lines changed

solana/programs/matching-engine/src/lib.rs

+106-46
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,21 @@ pub mod matching_engine {
4444
use super::*;
4545

4646
/// 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+
///
4951
/// # Arguments
5052
///
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].
5355
pub fn initialize(ctx: Context<Initialize>, args: InitializeArgs) -> Result<()> {
5456
processor::initialize(ctx, args)
5557
}
5658

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+
///
5962
/// # Arguments
6063
///
6164
/// * `ctx` - `SetPause` context.
@@ -64,8 +67,10 @@ pub mod matching_engine {
6467
processor::set_pause(ctx, pause)
6568
}
6669

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+
///
6974
/// # Arguments
7075
///
7176
/// * `ctx` - `AddCctpRouterEndpoint` context.
@@ -80,6 +85,7 @@ pub mod matching_engine {
8085
/// This instruction is used to add a new Local Router endpoint. Local means that the
8186
/// Token Router program exists on Solana. This instruction can only be called by the
8287
/// `owner` or `owner_assistant`.
88+
///
8389
/// # Arguments
8490
///
8591
/// * `ctx` - `AddLocalRouterEndpoint` context.
@@ -88,8 +94,9 @@ pub mod matching_engine {
8894
}
8995

9096
/// 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+
///
93100
/// # Arguments
94101
///
95102
/// * `ctx` - `DisableRouterEndpoint` context.
@@ -100,6 +107,7 @@ pub mod matching_engine {
100107
/// This instruction is used to update a CCTP router endpoint. It allows the caller to change
101108
/// the `address`, `mint_recipient`, and `domain`. This instruction can only be called by the
102109
/// `owner`.
110+
///
103111
/// # Arguments
104112
///
105113
/// * `ctx` - `UpdateCctpRouterEndpoint` context.
@@ -113,6 +121,7 @@ pub mod matching_engine {
113121

114122
/// This instruction is used to update a Local router endpoint. It allows the caller to change
115123
/// the `address` and `mint_recipient`. This instruction can only be called by the `owner`.
124+
///
116125
/// # Arguments
117126
///
118127
/// * `ctx` - `UpdateLocalRouterEndpoint` context.
@@ -123,6 +132,7 @@ pub mod matching_engine {
123132
/// This instruction sets the `pending_owner` field in the `Custodian` account. This instruction
124133
/// can only be called by the `owner`. The `pending_owner` address must be valid, meaning it
125134
/// cannot be the zero address or the current owner.
135+
///
126136
/// # Arguments
127137
///
128138
/// * `ctx` - `SubmitOwnershipTransferRequest` context.
@@ -135,6 +145,7 @@ pub mod matching_engine {
135145
/// This instruction confirms the ownership transfer request and sets the new `owner` in the
136146
/// `Custodian` account. This instruction can only be called by the `pending_owner`. The
137147
/// `pending_owner` must be the same as the `pending_owner` in the `Custodian` account.
148+
///
138149
/// # Arguments
139150
///
140151
/// * `ctx` - `ConfirmOwnershipTransferRequest` context.
@@ -144,8 +155,9 @@ pub mod matching_engine {
144155
processor::confirm_ownership_transfer_request(ctx)
145156
}
146157

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+
///
149161
/// # Arguments
150162
///
151163
/// * `ctx` - `CancelOwnershipTransferRequest` context.
@@ -158,6 +170,7 @@ pub mod matching_engine {
158170
/// This instruction is used to propose new auction parameters. A proposal cannot be enacted
159171
/// until one epoch has passed. This instruction can only be called by the `owner` or
160172
/// `owner_assistant`.
173+
///
161174
/// # Arguments
162175
///
163176
/// * `ctx` - `ProposeAuctionParameters` context.
@@ -172,6 +185,7 @@ pub mod matching_engine {
172185
/// This instruction is used to enact an existing auction update proposal. It can only be
173186
/// executed after the `slot_enact_delay` has passed. This instruction can only be called by
174187
/// the `owner` of the proposal.
188+
///
175189
/// # Arguments
176190
///
177191
/// * `ctx` - `UpdateAuctionParameters` context.
@@ -181,24 +195,27 @@ pub mod matching_engine {
181195

182196
/// This instruction is used to close an existing proposal by closing the proposal account. This
183197
/// instruction can only be called by the `owner` or `owner_assistant`.
198+
///
184199
/// # Arguments
185200
///
186201
/// * `ctx` - `CloseProposal` context.
187202
pub fn close_proposal(ctx: Context<CloseProposal>) -> Result<()> {
188203
processor::close_proposal(ctx)
189204
}
190205

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+
///
193209
/// # Arguments
194210
///
195211
/// * `ctx` - `UpdateOwnerAssistant` context.
196212
pub fn update_owner_assistant(ctx: Context<UpdateOwnerAssistant>) -> Result<()> {
197213
processor::update_owner_assistant(ctx)
198214
}
199215

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+
///
202219
/// # Arguments
203220
///
204221
/// * `ctx` - `UpdateFeeRecipient` context.
@@ -208,6 +225,7 @@ pub mod matching_engine {
208225

209226
/// This instruction is used for executing logic during an upgrade. This instruction can only be
210227
/// called by the `upgrade_manager_program`.
228+
///
211229
/// # Arguments
212230
///
213231
/// * `ctx` - `Migrate` context.
@@ -220,9 +238,9 @@ pub mod matching_engine {
220238
/// an auction-specific token custody account. This instruction can be called by anyone.
221239
/// # Arguments
222240
///
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.
226244
pub fn place_initial_offer_cctp(
227245
ctx: Context<PlaceInitialOfferCctp>,
228246
offer_price: u64,
@@ -232,20 +250,23 @@ pub mod matching_engine {
232250

233251
/// This instruction is used to improve an existing auction offer. The `offer_price` must be
234252
/// 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+
///
236256
/// # Arguments
237257
///
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.
241261
pub fn improve_offer(ctx: Context<ImproveOffer>, offer_price: u64) -> Result<()> {
242262
processor::improve_offer(ctx, offer_price)
243263
}
244264

245265
/// 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+
///
249270
/// # Arguments
250271
///
251272
/// * `ctx` - `ExecuteFastOrderCctp` context.
@@ -254,18 +275,21 @@ pub mod matching_engine {
254275
}
255276

256277
/// 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+
///
259281
/// # Arguments
260282
///
261283
/// * `ctx` - `ExecuteFastOrderLocal` context.
262284
pub fn execute_fast_order_local(ctx: Context<ExecuteFastOrderLocal>) -> Result<()> {
263285
processor::execute_fast_order_local(ctx)
264286
}
265287

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+
///
269293
/// # Arguments
270294
///
271295
/// * `ctx` - `CompleteFastFill` context.
@@ -274,9 +298,11 @@ pub mod matching_engine {
274298
}
275299

276300
/// 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+
///
280306
/// # Arguments
281307
///
282308
/// * `ctx` - `PrepareOrderResponseCctp` context.
@@ -287,10 +313,11 @@ pub mod matching_engine {
287313
processor::prepare_order_response_cctp(ctx, args)
288314
}
289315

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+
///
294321
/// # Arguments
295322
///
296323
/// * `ctx` - `SettleAuctionComplete` context.
@@ -299,20 +326,22 @@ pub mod matching_engine {
299326
}
300327

301328
/// 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+
///
305333
/// # Arguments
306334
///
307335
/// * `ctx` - `SettleAuctionNoneCctp` context.
308336
pub fn settle_auction_none_cctp(ctx: Context<SettleAuctionNoneCctp>) -> Result<()> {
309337
processor::settle_auction_none_cctp(ctx)
310338
}
311339

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+
///
316345
/// # Arguments
317346
///
318347
/// * `ctx` - `SettleAuctionNoneLocal` context.
@@ -322,6 +351,7 @@ pub mod matching_engine {
322351

323352
/// This instruction is used to create the first `AuctionHistory` account, whose PDA is derived
324353
/// using ID == 0.
354+
///
325355
/// # Arguments
326356
///
327357
/// * `ctx` - `CreateFirstAuctionHistory` context.
@@ -332,6 +362,7 @@ pub mod matching_engine {
332362
/// This instruction is used to create a new `AuctionHistory` account. The PDA is derived using
333363
/// its ID. A new history account can be created only when the current one is full (number of
334364
/// entries equals the hard-coded max entries).
365+
///
335366
/// # Arguments
336367
///
337368
/// * `ctx` - `CreateNewAuctionHistory` context.
@@ -350,19 +381,48 @@ pub mod matching_engine {
350381
/// lamports by closing that account. And the protocol's fee recipient will be able to claim
351382
/// lamports by closing the empty `Auction` account it creates when he calls any of the
352383
/// `settle_auction_none_*` instructions.
384+
///
353385
/// # Arguments
354386
///
355387
/// * `ctx` - `AddAuctionHistoryEntry` context.
356388
pub fn add_auction_history_entry(ctx: Context<AddAuctionHistoryEntry>) -> Result<()> {
357389
processor::add_auction_history_entry(ctx)
358390
}
359391

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.
360408
pub fn reserve_fast_fill_sequence_active_auction(
361409
ctx: Context<ReserveFastFillSequenceActiveAuction>,
362410
) -> Result<()> {
363411
processor::reserve_fast_fill_sequence_active_auction(ctx)
364412
}
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.
366426
pub fn reserve_fast_fill_sequence_no_auction(
367427
ctx: Context<ReserveFastFillSequenceNoAuction>,
368428
) -> Result<()> {

0 commit comments

Comments
 (0)