From 590dcfff79fc96994d66bb4f131e1bbde10628dc Mon Sep 17 00:00:00 2001 From: jorsema2 Date: Wed, 15 Jan 2025 18:37:43 +0100 Subject: [PATCH] docs: fixed typo in transactionReceipt.gasPrice description (#4390) --- lib.commonjs/providers/provider.d.ts | 2 +- lib.esm/providers/provider.d.ts | 2 +- src.ts/providers/provider.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib.commonjs/providers/provider.d.ts b/lib.commonjs/providers/provider.d.ts index 06d47cd80a..c8dc2af195 100644 --- a/lib.commonjs/providers/provider.d.ts +++ b/lib.commonjs/providers/provider.d.ts @@ -604,7 +604,7 @@ export declare class TransactionReceipt implements TransactionReceiptParams, Ite * The actual gas price used during execution. * * Due to the complexity of [[link-eip-1559]] this value can only - * be caluclated after the transaction has been mined, snce the base + * be calculated after the transaction has been mined, snce the base * fee is protocol-enforced. */ readonly gasPrice: bigint; diff --git a/lib.esm/providers/provider.d.ts b/lib.esm/providers/provider.d.ts index 06d47cd80a..c8dc2af195 100644 --- a/lib.esm/providers/provider.d.ts +++ b/lib.esm/providers/provider.d.ts @@ -604,7 +604,7 @@ export declare class TransactionReceipt implements TransactionReceiptParams, Ite * The actual gas price used during execution. * * Due to the complexity of [[link-eip-1559]] this value can only - * be caluclated after the transaction has been mined, snce the base + * be calculated after the transaction has been mined, snce the base * fee is protocol-enforced. */ readonly gasPrice: bigint; diff --git a/src.ts/providers/provider.ts b/src.ts/providers/provider.ts index 0263f26a89..7c04686311 100644 --- a/src.ts/providers/provider.ts +++ b/src.ts/providers/provider.ts @@ -1019,7 +1019,7 @@ export class TransactionReceipt implements TransactionReceiptParams, Iterable