chore: update snowbridge submodule (#109)

This PR updates the Snowbridge submodule and regenerates contract
bindings to incorporate the latest changes from upstream.
This commit is contained in:
Ahmad Kaouk 2025-07-01 15:52:17 +02:00 committed by GitHub
parent 3ea6e57b66
commit b6e8661dea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 25 additions and 6 deletions

@ -1 +1 @@
Subproject commit 80398fe988359da1ba6866618bd27126b38972e4
Subproject commit 290579d6d246091dad12c612d643402ec04b6ac7

View file

@ -1799,11 +1799,7 @@ export const beefyClientAbi = [
internalType: 'bytes32',
type: 'bytes32',
},
{
name: 'parachainHeadsRoot',
internalType: 'bytes32',
type: 'bytes32',
},
{ name: 'beefyExtraField', internalType: 'bytes32', type: 'bytes32' },
],
},
{ name: 'leafProof', internalType: 'bytes32[]', type: 'bytes32[]' },
@ -5663,6 +5659,20 @@ export const gatewayAbi = [
],
name: 'AgentFundsWithdrawn',
},
{
type: 'event',
anonymous: false,
inputs: [
{ name: 'nonce', internalType: 'uint64', type: 'uint64', indexed: true },
{
name: 'index',
internalType: 'uint256',
type: 'uint256',
indexed: false,
},
],
name: 'CommandFailed',
},
{
type: 'event',
anonymous: false,
@ -14414,6 +14424,15 @@ export const watchGatewayAgentFundsWithdrawnEvent =
eventName: 'AgentFundsWithdrawn',
})
/**
* Wraps __{@link watchContractEvent}__ with `abi` set to __{@link gatewayAbi}__ and `eventName` set to `"CommandFailed"`
*/
export const watchGatewayCommandFailedEvent =
/*#__PURE__*/ createWatchContractEvent({
abi: gatewayAbi,
eventName: 'CommandFailed',
})
/**
* Wraps __{@link watchContractEvent}__ with `abi` set to __{@link gatewayAbi}__ and `eventName` set to `"Deposited"`
*/