mirror of
https://github.com/fluencelabs/lazy-snark
synced 2025-04-25 06:52:14 +00:00
14 lines
187 B
Solidity
14 lines
187 B
Solidity
pragma solidity ^0.5.4;
|
|
|
|
interface Structs {
|
|
struct Data {
|
|
uint[5] input;
|
|
}
|
|
|
|
struct Proof {
|
|
uint[2] a;
|
|
uint[2][2] b;
|
|
uint[2] c;
|
|
}
|
|
}
|