File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -358,13 +358,13 @@ let result = try! transaction.call()
358
358
359
359
##### Other Transaction Types
360
360
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.
362
362
To create one of the new transaction types introduced with the ` london ` fork you will need to set some additonal parameters
363
363
in the ` TransactionOptions ` object. Note you should only try to send one of tehse new types of transactions if you are on a chain
364
364
that supports them.
365
365
366
366
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.
368
368
``` swift
369
369
let accessList: [AccessListEntry] = [
370
370
AccessListEntry (
@@ -388,7 +388,7 @@ options.type = .eip1559
388
388
options.maxFeePerGas = .manual (... ) // the maximum price per unit of gas, inclusive of baseFee and tip
389
389
options.maxPriorityFeePerGas = .manual (... ) // the tip to be paid to the miner, per unit of gas
390
390
```
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
392
392
393
393
### Chain state
394
394
You can’t perform that action at this time.
0 commit comments