Skip to content

Commit

Permalink
sonic decoder
Browse files Browse the repository at this point in the history
  • Loading branch information
mel0ndev committed Dec 3, 2024
1 parent 5104039 commit 60058f7
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;

import {BaseDecoderAndSanitizer, DecoderCustomTypes} from "src/base/DecodersAndSanitizers/BaseDecoderAndSanitizer.sol";

abstract contract SoniceDecoderAndSanitizer is BaseDecoderAndSanitizer {

function depositBudget(uint256 /*amount*/) external virtual pure returns(bytes memory addressesFound) {
return addressesFound;
}
}

0 comments on commit 60058f7

Please sign in to comment.