Batch Transactions
The contract also emits batch events for processing multiple orders at once:
public struct BatchOffersAccepted has copy, drop, store {
accepter: address,
total_filled: u64,
total_cost: u64,
timestamp: u64,
ledger_id: ID,
offers: vector<OfferAccepted>
}
public struct BatchBuyOffersAccepted has copy, drop, store {
accepter: address,
total_filled: u64,
total_cost: u64,
timestamp: u64,
ledger_id: ID,
offers: vector<BuyOfferAccepted>
}
Last updated