mirror of
https://github.com/status-im/codex-contracts-eth.git
synced 2025-01-31 02:35:36 +00:00
11 lines
216 B
Solidity
11 lines
216 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.28;
|
|
|
|
import "./Endian.sol";
|
|
|
|
contract TestEndian is Endian {
|
|
function byteSwap(bytes32 input) public pure returns (bytes32) {
|
|
return _byteSwap(input);
|
|
}
|
|
}
|