mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
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:
parent
3ea6e57b66
commit
b6e8661dea
2 changed files with 25 additions and 6 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit 80398fe988359da1ba6866618bd27126b38972e4
|
||||
Subproject commit 290579d6d246091dad12c612d643402ec04b6ac7
|
||||
|
|
@ -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"`
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue