Skip to content

Commit

Permalink
fix: EVM signer type
Browse files Browse the repository at this point in the history
  • Loading branch information
Mithreum committed Jan 14, 2025
1 parent b518d30 commit 9715d29
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/chains/web3helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {
type ContractTransactionResponse,
type Overrides,
type Provider,
type Signer,
} from "ethers";
import type {
AddressBook,
Expand Down Expand Up @@ -80,12 +79,12 @@ export type Web3Helper = GetBalance &
ParceCallData &
GetTokenAddress &
GetSwapResultAmount &
ILiquidityPool<Signer | JsonRpcSigner, ContractTransactionResponse, Overrides> &
PreTransfer<Signer | JsonRpcSigner, PayableOverrides> &
SendInstallment<Signer | JsonRpcSigner, ContractTransactionResponse, PayableOverrides> &
StakeLiquidity<Signer | JsonRpcSigner, ContractTransactionResponse, Overrides> &
WithdrawLiquidity<Signer | JsonRpcSigner, ContractTransactionResponse, Overrides> &
WithdrawFees<Signer | JsonRpcSigner, ContractTransactionResponse, Overrides>
ILiquidityPool<JsonRpcSigner, ContractTransactionResponse, Overrides> &
PreTransfer<JsonRpcSigner, PayableOverrides> &
SendInstallment<JsonRpcSigner, ContractTransactionResponse, PayableOverrides> &
StakeLiquidity<JsonRpcSigner, ContractTransactionResponse, Overrides> &
WithdrawLiquidity<JsonRpcSigner, ContractTransactionResponse, Overrides> &
WithdrawFees<JsonRpcSigner, ContractTransactionResponse, Overrides>
;

export interface Web3Params {
Expand Down

0 comments on commit 9715d29

Please sign in to comment.