1
0
mirror of https://github.com/fluencelabs/lazy-snark synced 2025-06-22 11:11:42 +00:00
Files
backend_fluence
backend_zk
frontend
truffle
contracts
IVerifier.sol
Lazy.sol
Migrations.sol
Structs.sol
Verifier.sol
VerifierProxy.sol
migrations
package.json
truffle.js
.gitignore
README.md
Scheme.png
lazy-snark/truffle/contracts/Structs.sol

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
}
}