Skip to content

Commit

Permalink
fix(wallet): use native TransactionRequest type instead of ethers
Browse files Browse the repository at this point in the history
  • Loading branch information
danijelTxFusion committed Apr 3, 2024
1 parent dc83275 commit 24c4071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@ export class Wallet extends AdapterL2(AdapterL1(ethers.Wallet)) {
* await tx.wait();
*/
override async sendTransaction(
transaction: ethers.providers.TransactionRequest
transaction: TransactionRequest
): Promise<TransactionResponse> {
return (await super.sendTransaction(transaction)) as TransactionResponse;
}
Expand Down

0 comments on commit 24c4071

Please sign in to comment.