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()
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.
362362To create one of the new transaction types introduced with the ` london ` fork you will need to set some additonal parameters
363363in the ` TransactionOptions ` object. Note you should only try to send one of tehse new types of transactions if you are on a chain
364364that supports them.
365365
366366To 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
369369let accessList: [AccessListEntry] = [
370370 AccessListEntry (
@@ -388,7 +388,7 @@ options.type = .eip1559
388388options.maxFeePerGas = .manual (... ) // the maximum price per unit of gas, inclusive of baseFee and tip
389389options.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
You can’t perform that action at this time.
0 commit comments