IExpressRelayFeeReceiver.sol 397 B

1234567891011
  1. // SPDX-License-Identifier: UNLICENSED
  2. // Copyright (C) 2024 Lavra Holdings Limited - All Rights Reserved
  3. pragma solidity ^0.8.0;
  4. interface IExpressRelayFeeReceiver {
  5. // Receive the proceeds of an auction.
  6. // @param permissionKey The permission key where the auction was conducted on.
  7. function receiveAuctionProceedings(
  8. bytes calldata permissionKey
  9. ) external payable;
  10. }