Skip to content

Commit

Permalink
bump up yui-ibc-solidity to v0.3.31
Browse files Browse the repository at this point in the history
Signed-off-by: Masanori Yoshida <[email protected]>
  • Loading branch information
siburu committed Jul 9, 2024
1 parent 88aef91 commit 6398a8c
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 2 deletions.
95 changes: 94 additions & 1 deletion pkg/contract/ibchandler/ibchandler.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion yui-ibc-solidity
Submodule yui-ibc-solidity updated 60 files
+63 −63 .gas-snapshot
+17 −11 .github/workflows/test.yml
+0 −1 .solhintignore
+15 −11 Makefile
+5 −4 README.md
+42 −0 chains/compose.yml
+0 −21 chains/docker-compose.yml
+1 −1 chains/ibft2/chain0/Dockerfile
+6 −6 chains/ibft2/chain0/ibftConfigFile.json
+1 −1 chains/ibft2/chain1/Dockerfile
+6 −6 chains/ibft2/chain1/ibftConfigFile.json
+13 −0 chains/qbft/chain0/Dockerfile
+57 −0 chains/qbft/chain0/qbftConfigFile.json
+13 −0 chains/qbft/chain1/Dockerfile
+57 −0 chains/qbft/chain1/qbftConfigFile.json
+0 −3 contracts/apps/20-transfer/ICS20Bank.sol
+9 −9 contracts/clients/09-localhost/LocalhostClient.sol
+12 −12 contracts/clients/09-localhost/LocalhostHelper.sol
+16 −16 contracts/clients/mock/MockClient.sol
+266 −0 contracts/clients/qbft/MPTProof.sol
+125 −150 contracts/clients/qbft/QBFTClient.sol
+356 −0 contracts/clients/qbft/RLPReader.sol
+6 −5 contracts/core/02-client/ILightClientErrors.sol
+0 −21 contracts/core/04-channel/IBCChannelUpgrade.sol
+77 −26 contracts/core/25-handler/IBCQuerier.sol
+19 −6 contracts/core/25-handler/IIBCQuerier.sol
+54 −18 contracts/core/26-router/IBCModuleManager.sol
+84 −12 contracts/proto/QBFT.sol
+6 −0 foundry.toml
+126 −81 go.mod
+682 −469 go.sum
+52 −1,102 package-lock.json
+2 −4 package.json
+52 −31 pkg/chains/besu.go
+21 −0 pkg/client/client.go
+0 −538 pkg/contract/ibft2client/ibft2client.go
+1 −1 pkg/contract/mockclient/mockclient.go
+569 −0 pkg/contract/qbftclient/qbftclient.go
+321 −0 pkg/ibc/clients/localhost/Localhost.pb.go
+188 −124 pkg/ibc/clients/qbft/QBFT.pb.go
+429 −654 pkg/ibc/core/channel/Channel.pb.go
+1 −4 pkg/ibc/core/client/client.go
+0 −3 pkg/ibc/core/commitment/Commitment.pb.go
+2 −2 pkg/ibc/core/commitment/commitment.go
+82 −253 pkg/testing/chains.go
+15 −72 pkg/testing/client.go
+9 −37 pkg/testing/coordinator.go
+3 −3 pkg/testing/types.go
+1 −1 pkg/wallet/wallet.go
+9 −3 proto/clients/qbft/QBFT.proto
+1 −1 scripts/abigen.sh
+30 −27 tests/e2e/chains_test.go
+5 −5 tests/foundry/src/Deploy.s.sol
+1 −1 tests/foundry/src/IBC.t.sol
+2 −2 tests/foundry/src/IBCMockApp.t.sol
+1 −1 tests/foundry/src/ICS02.t.sol
+14 −2 tests/foundry/src/ICS04Upgrade.t.sol
+2 −2 tests/foundry/src/ICS04UpgradeApp.t.sol
+1 −1 tests/foundry/src/helpers/IBCTestHelper.t.sol
+1 −1 tests/foundry/src/helpers/MockClientTestHelper.t.sol

0 comments on commit 6398a8c

Please sign in to comment.