Skip to content

Commit

Permalink
Fix ts issues
Browse files Browse the repository at this point in the history
  • Loading branch information
yigiterdev committed Jan 14, 2025
1 parent 48d855f commit 3e6e795
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/relayer/src/provider-relayer.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ethers } from 'ethers'
import { walletContracts } from '@0xsequence/abi'
import { FeeOption, FeeQuote, Relayer, SimulateResult } from '.'
import { FeeOption, FeeQuote, proto, Relayer, SimulateResult } from '.'
import { logger, Optionals } from '@0xsequence/utils'
import { commons } from '@0xsequence/core'

Expand Down Expand Up @@ -63,9 +63,9 @@ export abstract class ProviderRelayer implements Relayer {
cost: number
}>

abstract getMetaTransactions(projectId: number, gasTankId: number, page?: proto.Page): Promise<{
abstract getMetaTransactions(projectId: number, gasTankId: number, page?: commons.Page): Promise<{

Check failure on line 66 in packages/relayer/src/provider-relayer.ts

View workflow job for this annotation

GitHub Actions / Run build

Namespace '"/home/runner/work/sequence.js/sequence.js/packages/core/src/commons/index"' has no exported member 'Page'.
page: commons.Page,

Check failure on line 67 in packages/relayer/src/provider-relayer.ts

View workflow job for this annotation

GitHub Actions / Run build

Namespace '"/home/runner/work/sequence.js/sequence.js/packages/core/src/commons/index"' has no exported member 'Page'.
transactions: commons.MetaTxnLog[]
transactions: proto.MetaTxnLog[]
}>

async simulate(wallet: string, ...transactions: commons.transaction.Transaction[]): Promise<SimulateResult[]> {
Expand Down

0 comments on commit 3e6e795

Please sign in to comment.