Skip to content

Commit

Permalink
docs: up deposits (#3025)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsimao authored Nov 19, 2024
1 parent 85a4c71 commit 1ce42d6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions site/pages/op-stack/guides/deposits.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ import { publicClientL2 } from './config'

// Build parameters for the transaction on the L2.
const args = await publicClientL2.buildDepositTransaction({
mint: parseEther('1')
mint: parseEther('1'),
to: account.address,
})
```
Expand Down Expand Up @@ -265,7 +265,7 @@ import { account, publicClientL2, walletClientL1 } from './config'

// Build parameters for the transaction on the L2.
const args = await publicClientL2.buildDepositTransaction({
mint: parseEther('1')
mint: parseEther('1'),
to: account.address,
})

Expand Down Expand Up @@ -350,7 +350,7 @@ import {

// Build parameters for the transaction on the L2.
const args = await publicClientL2.buildDepositTransaction({
mint: parseEther('1')
mint: parseEther('1'),
to: account.address,
})

Expand Down Expand Up @@ -432,7 +432,7 @@ import {

// Build parameters for the transaction on the L2.
const args = await publicClientL2.buildDepositTransaction({
mint: parseEther('1')
mint: parseEther('1'),
to: account.address,
})

Expand Down Expand Up @@ -519,7 +519,7 @@ import {

// Build parameters for the transaction on the L2.
const args = await publicClientL2.buildDepositTransaction({
mint: parseEther('1')
mint: parseEther('1'),
to: account.address,
})

Expand Down

0 comments on commit 1ce42d6

Please sign in to comment.