IExpressRelayFeeReceiver.sol 328 B

12345678910
  1. // SPDX-License-Identifier: Apache 2
  2. pragma solidity ^0.8.0;
  3. interface IExpressRelayFeeReceiver {
  4. // Receive the proceeds of an auction.
  5. // @param permissionKey The permission key where the auction was conducted on.
  6. function receiveAuctionProceedings(
  7. bytes calldata permissionKey
  8. ) external payable;
  9. }