Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions packages/relayer/src/rpc-relayer/relayer.gen.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable */
// sequence-relayer v0.4.1 0a2503bc893179ba968b0015d7580aabf6a88dd4
// sequence-relayer v0.4.1 17923978b5bea530cea7f2517b8c22eea7e51e57
// --
// Code generated by Webrpc-gen@v0.32.2 with typescript generator. DO NOT EDIT.
//
Expand All @@ -12,7 +12,7 @@ export const WebrpcVersion = 'v1'
export const WebrpcSchemaVersion = 'v0.4.1'

// Schema hash generated from your RIDL schema
export const WebrpcSchemaHash = '0a2503bc893179ba968b0015d7580aabf6a88dd4'
export const WebrpcSchemaHash = '17923978b5bea530cea7f2517b8c22eea7e51e57'

//
// Client interface
Expand Down Expand Up @@ -362,6 +362,14 @@ export interface MetaTxn {
walletAddress: string
contract: string
input: string
authorization?: EIP7702Authorization
}

export interface EIP7702Authorization {
chainId: number
implementation: string
nonce: number
signature: string
}

export interface MetaTxnLog {
Expand Down Expand Up @@ -601,6 +609,7 @@ export interface FeeOptionsArgs {
to: string
data: string
simulate?: boolean
authorization?: EIP7702Authorization
}

export interface FeeOptionsReturn {
Expand Down Expand Up @@ -628,6 +637,7 @@ export interface FeeOptionsWithBridgeGasArgs {
data: string
simulate?: boolean
bridgeGas: string
authorization?: EIP7702Authorization
}

export interface FeeOptionsWithBridgeGasReturn {
Expand Down
Loading