Skip to content

Commit f89cea8

Browse files
committed
typo fixes
1 parent 6bb47dd commit f89cea8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Documentation/Usage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -358,13 +358,13 @@ let result = try! transaction.call()
358358

359359
##### Other Transaction Types
360360

361-
By default a `legacy` transaction will be created which is compatible accross all chains, regardless of which fork.
361+
By default a `legacy` transaction will be created which is compatible across all chains, regardless of which fork.
362362
To create one of the new transaction types introduced with the `london` fork you will need to set some additonal parameters
363363
in the `TransactionOptions` object. Note you should only try to send one of tehse new types of transactions if you are on a chain
364364
that supports them.
365365

366366
To send an EIP-2930 style transacton with an access list you need to set the transaction type, and the access list,
367-
in addition what is shown in the eexamples above
367+
in addition what is shown in the examples above.
368368
```swift
369369
let accessList: [AccessListEntry] = [
370370
AccessListEntry(
@@ -388,7 +388,7 @@ options.type = .eip1559
388388
options.maxFeePerGas = .manual(...) // the maximum price per unit of gas, inclusive of baseFee and tip
389389
options.maxPriorityFeePerGas = .manual(...) // the tip to be paid to the miner, per unit of gas
390390
```
391-
Note there is a new `Oracle` available that can be used to assist with estimating the new gas fees
391+
Note there is a new `Oracle` object available that can be used to assist with estimating the new gas fees
392392

393393
### Chain state
394394

0 commit comments

Comments
 (0)