Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update vibc-core-smart-contracts dependency #4

Merged
merged 8 commits into from
Feb 16, 2024
2 changes: 1 addition & 1 deletion lib/vibc-core-smart-contracts
Submodule vibc-core-smart-contracts updated 57 files
+6 −0 .gitmodules
+1 −1 .prettierrc.yml
+10 −9 contracts/ConsensusStateManager.sol
+100 −159 contracts/Dispatcher.sol
+12 −9 contracts/DummyConsensusStateManager.sol
+12 −0 contracts/DummyProofVerifier.sol
+0 −50 contracts/DummyVerifier.sol
+26 −23 contracts/Earth.sol
+51 −27 contracts/GeneralMiddleware.sol
+0 −235 contracts/Groth16Verifier.sol
+160 −2 contracts/Ibc.sol
+11 −6 contracts/IbcDispatcher.sol
+19 −11 contracts/IbcMiddleware.sol
+18 −12 contracts/IbcReceiver.sol
+0 −43 contracts/IbcVerifier.sol
+27 −29 contracts/Mars.sol
+44 −29 contracts/OpConsensusStateManager.sol
+169 −0 contracts/OpProofVerifier.sol
+81 −0 contracts/ProofVerifier.sol
+55 −53 contracts/UniversalChannelHandler.sol
+0 −56 contracts/Verifier.sol
+0 −25 contracts/payload/hash.sol
+0 −750 contracts/payload/packet.proto.sol
+0 −5 contracts/payload/proto-gen.sh
+0 −41 contracts/payload/proto/packet.proto
+4 −2 foundry.toml
+1 −0 lib/base64
+1 −0 lib/optimism
+249 −0 lib/proto/GoogleProtobufAny.sol
+2,059 −0 lib/proto/ProtoBufRuntime.sol
+580 −0 lib/proto/channel.sol
+31 −0 proto/channel.proto
+37 −0 proto/generate.sh
+3 −0 remappings.txt
+51 −68 test/Dispatcher.base.t.sol
+18 −57 test/Dispatcher.client.t.sol
+145 −0 test/Dispatcher.proof.t.sol
+96 −90 test/Dispatcher.t.sol
+75 −0 test/Ibc.t.sol
+53 −20 test/OpConsensusStateManager.t.sol
+83 −0 test/Proof.base.t.sol
+208 −0 test/Verifier.t.sol
+47 −42 test/VirtualChain.sol
+1 −0 test/payload/channel_ack_pending_proof.hex
+1 −0 test/payload/channel_confirm_pending_proof.hex
+1 −0 test/payload/channel_try_pending_proof.hex
+1 −0 test/payload/l1_block_0x1235261.hex
+1 −0 test/payload/l1_block_0x4df537.hex
+312 −0 test/payload/l1_block_0x4df537.json
+26 −0 test/payload/l1_block_0x61a80.json
+21 −0 test/payload/l2_block_0x4b0.json
+31 −0 test/payload/output_at_block_l1_0x4df537_with_proof.json
+0 −476 test/payload/packet.t.sol
+1 −0 test/payload/packet_ack_proof.hex
+1 −0 test/payload/packet_commitment_proof.hex
+67 −0 test/query-contract.sh
+89 −56 test/universal.channel.t.sol