Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions src.ts/providers/abstract-signer.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Generally the [[Wallet]] and [[JsonRpcSigner]] and their sub-classes
* are sufficent for most developers, but this is provided to
* are sufficient for most developers, but this is provided to
* fascilitate more complex Signers.
*
* @_section: api/providers/abstract-signer: Subclassing Signer [abstract-signer]
Expand Down Expand Up @@ -267,7 +267,7 @@ export abstract class AbstractSigner<P extends null | Provider = null | Provider
}

/**
* A **VoidSigner** is a class deisgned to allow an address to be used
* A **VoidSigner** is a class designed to allow an address to be used
* in any API which accepts a Signer, but for which there are no
* credentials available to perform any actual signing.
*
Expand Down
2 changes: 1 addition & 1 deletion src.ts/providers/formatting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export interface TransactionReceiptParams {
logs: ReadonlyArray<LogParams>;

/**
* The amount of gas consumed executing this transaciton.
* The amount of gas consumed executing this transaction.
*/
gasUsed: bigint;

Expand Down