mirror of
https://github.com/codex-storage/codex-contracts-eth.git
synced 2025-01-10 11:55:44 +00:00
db124ddbd9
first configuration, then contracts that we depend on
16 lines
293 B
Solidity
16 lines
293 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.8;
|
|
|
|
import "./Verifier.sol";
|
|
|
|
contract TestVerifier is IVerifier {
|
|
function verifyProof(
|
|
uint[2] calldata,
|
|
uint[2][2] calldata,
|
|
uint[2] calldata,
|
|
uint[3] calldata
|
|
) external pure returns (bool) {
|
|
return false;
|
|
}
|
|
}
|