14 lines
187 B
Solidity
Raw Normal View History

2019-06-22 17:33:56 +03:00
pragma solidity ^0.5.4;
interface Structs {
struct Data {
2019-06-22 19:10:54 +03:00
uint[5] input;
2019-06-22 17:33:56 +03:00
}
struct Proof {
2019-06-22 19:10:54 +03:00
uint[2] a;
uint[2][2] b;
uint[2] c;
2019-06-22 17:33:56 +03:00
}
}