mirror of
https://github.com/codex-storage/codex-contracts-eth.git
synced 2025-01-09 11:32:22 +00:00
688a8ed929
Co-authored-by: 0xb337r007 <0xe4e5@proton.me> Co-authored-by: Adam Uhlíř <adam@uhlir.dev>
11 lines
216 B
Solidity
11 lines
216 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.23;
|
|
|
|
import "./Endian.sol";
|
|
|
|
contract TestEndian is Endian {
|
|
function byteSwap(bytes32 input) public pure returns (bytes32) {
|
|
return _byteSwap(input);
|
|
}
|
|
}
|