Skip to content

Commit 70bf529

Browse files
committed
updated amount
1 parent 5606494 commit 70bf529

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pages/builders/app-developers/tutorials/sdk-estimate-costs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ You're now going to estimate the cost of a transaction on OP Mainnet.
194194
const transaction = {
195195
account,
196196
to: '0x1000000000000000000000000000000000000000',
197-
value: parseEther('0.1'),
197+
value: parseEther('0.005'),
198198
gasPrice: parseGwei('20')
199199
};
200200
```

public/tutorials/sdk-estimate-costs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async function estimateTransactionCosts() {
3434
const transaction = {
3535
account,
3636
to: '0x1000000000000000000000000000000000000000',
37-
value: parseEther('0.1'),
37+
value: parseEther('0.005'),
3838
gasPrice: parseGwei('20')
3939
}
4040

0 commit comments

Comments
 (0)