mirror of
https://github.com/codex-storage/codex-contracts-eth.git
synced 2025-01-24 10:29:36 +00:00
19 lines
220 B
Solidity
19 lines
220 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.23;
|
|
|
|
struct G1Point {
|
|
uint x;
|
|
uint y;
|
|
}
|
|
|
|
struct G2Point {
|
|
uint[2] x;
|
|
uint[2] y;
|
|
}
|
|
|
|
struct Groth16Proof {
|
|
G1Point a;
|
|
G2Point b;
|
|
G1Point c;
|
|
}
|