Skip to content

Commit

Permalink
Bump submodules/hyperbridge from d81f30f to da97a78 (#359)
Browse files Browse the repository at this point in the history
Bumps [submodules/hyperbridge](https://github.com/polytope-labs/hyperbridge) from `d81f30f` to `da97a78`.
- [Release notes](https://github.com/polytope-labs/hyperbridge/releases)
- [Commits](polytope-labs/hyperbridge@d81f30f...da97a78)

---
updated-dependencies:
- dependency-name: submodules/hyperbridge
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 15, 2024
1 parent e2d85ed commit 59f560c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submodules/hyperbridge
Submodule hyperbridge updated 87 files
+58 −33 Cargo.lock
+4 −2 Cargo.toml
+34 −34 docs/pages/developers/evm/contract-addresses.mdx
+176 −0 docs/pages/developers/polkadot/token-gateway.mdx
+0 −201 docs/pages/developers/polkadot/tokengateway.mdx
+1 −1 docs/vocs.config.tsx
+84 −129 evm/abi/src/generated/evm_host.rs
+2 −82 evm/abi/src/generated/host_manager.rs
+2 −2 evm/abi/src/generated/ping_module.rs
+0 −19 evm/abi/src/generated/shared_types.rs
+68 −0 evm/abi/src/generated/sp1_beefy.rs
+0 −88 evm/examples/CrossChainMessenger.sol
+3 −3 evm/examples/PingModule.sol
+1 −1 evm/package.json
+2 −0 evm/script/BaseScript.sol
+12 −9 evm/script/DeployGateway.s.sol
+15 −14 evm/script/DeployHostUpdates.s.sol
+4 −7 evm/script/DeployIsmp.s.sol
+1 −1 evm/script/batchDeploy.sh
+10 −17 evm/script/deploy.sh
+5 −3 evm/src/consensus/SP1Beefy.sol
+50 −49 evm/src/hosts/EvmHost.sol
+61 −0 evm/src/modules/Inscriptions.sol
+2 −1 evm/src/modules/Registrar.sol
+2 −7 evm/src/modules/TokenGateway.sol
+5 −7 evm/test/BaseTest.sol
+5 −6 evm/test/EvmHostForkTest.sol
+4 −112 evm/test/EvmHostTest.sol
+3 −2 evm/test/GetRequest.sol
+6 −10 evm/test/MainnetForkBaseTest.sol
+1 −1 evm/test/PostRequest.sol
+2 −2 evm/test/RegistrarTest.sol
+0 −9 evm/test/SP1BeefyTest.sol
+2 −2 evm/test/TokenGatewayForkTest.sol
+5 −11 evm/test/TokenGatewayTest.sol
+4 −4 evm/yarn.lock
+0 −10 modules/consensus/beefy/prover/src/relay.rs
+1 −0 modules/hyperclient/Cargo.toml
+1 −1 modules/hyperclient/package.json
+16 −13 modules/hyperclient/src/lib.rs
+16 −13 modules/hyperclient/src/providers/evm.rs
+5 −5 modules/hyperclient/src/testing.rs
+3 −2 modules/ismp/clients/sync-committee/evm-common/Cargo.toml
+47 −0 modules/ismp/clients/sync-committee/evm-common/src/utils.rs
+1 −1 modules/ismp/pallets/asset-gateway/Cargo.toml
+51 −20 modules/ismp/pallets/host-executive/src/params.rs
+1 −1 modules/ismp/pallets/hyperbridge/Cargo.toml
+33 −17 modules/ismp/pallets/hyperbridge/src/lib.rs
+2 −1 modules/ismp/pallets/testsuite/Cargo.toml
+2 −2 modules/ismp/pallets/testsuite/src/runtime.rs
+1 −1 modules/ismp/pallets/testsuite/src/tests/mod.rs
+7 −2 modules/ismp/pallets/testsuite/src/tests/pallet_hyperbridge.rs
+14 −16 modules/ismp/pallets/testsuite/src/tests/pallet_token_gateway.rs
+11 −11 modules/ismp/pallets/testsuite/src/tests/pallet_xcm_gateway.rs
+5 −5 modules/ismp/pallets/testsuite/src/xcm.rs
+6 −4 modules/ismp/pallets/token-gateway/Cargo.toml
+1 −1 modules/ismp/pallets/token-gateway/README.md
+51 −0 modules/ismp/pallets/token-gateway/primitives/Cargo.toml
+7 −0 modules/ismp/pallets/token-gateway/primitives/README.md
+91 −0 modules/ismp/pallets/token-gateway/primitives/src/lib.rs
+1 −2 modules/ismp/pallets/token-gateway/src/impls.rs
+104 −88 modules/ismp/pallets/token-gateway/src/lib.rs
+4 −13 modules/ismp/pallets/token-gateway/src/types.rs
+2 −0 modules/ismp/pallets/token-governor/Cargo.toml
+45 −27 modules/ismp/pallets/token-governor/src/impls.rs
+20 −22 modules/ismp/pallets/token-governor/src/lib.rs
+34 −36 modules/ismp/pallets/token-governor/src/types.rs
+26 −5 modules/ismp/state-machines/hyperbridge/src/lib.rs
+7,293 −3,706 modules/utils/subxt/src/gargantua.rs
+21 −9 modules/utils/subxt/src/lib.rs
+2 −2 parachain/runtimes/gargantua/Cargo.toml
+8 −8 parachain/runtimes/gargantua/src/ismp.rs
+1 −1 parachain/runtimes/gargantua/src/lib.rs
+1 −1 parachain/runtimes/gargantua/src/xcm.rs
+2 −2 parachain/runtimes/messier/Cargo.toml
+4 −4 parachain/runtimes/messier/src/ismp.rs
+1 −1 parachain/runtimes/messier/src/lib.rs
+1 −1 parachain/runtimes/messier/src/xcm.rs
+2 −2 parachain/runtimes/nexus/Cargo.toml
+9 −9 parachain/runtimes/nexus/src/ismp.rs
+1 −1 parachain/runtimes/nexus/src/lib.rs
+1 −1 parachain/runtimes/nexus/src/xcm.rs
+5 −3 parachain/simtests/src/hyperbridge_client.rs
+4 −2 parachain/simtests/src/pallet_ismp.rs
+2 −0 scripts/release-crates.sh
+26 −20 tesseract/evm/src/provider.rs
+9 −3 tesseract/integration-test/src/lib.rs

0 comments on commit 59f560c

Please sign in to comment.