Skip to content

Commit 2a97d16

Browse files
fix: update links
1 parent 0499e05 commit 2a97d16

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

content/sdk/30.python/01.guides/02.accounts-l1-l2.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Methods to facilitate transactions between L1 and L2 networks
44
tags: ["zksync", "l1", "l2", "transactions", "python", "sdk"]
55
---
66

7-
This section explores the methods which allow the [account](/sdk/python/api/accounts/accounts)
7+
This section explores the methods which allow the [account](/sdk/python/api/accounts/wallet)
88
classes to send transactions from L1 to L2.
99

1010
If you want to get some background on how L1->L2 interaction works on ZKsync Era, go through the
@@ -15,34 +15,34 @@ Full examples of actions below are available on the getting started page.
1515
## Deposit
1616

1717
`Wallet` object provides a deposit workflow. For more information, please refer to the
18-
method specification [`Deposit`](/sdk/python/api/accounts/accounts#deposit).
18+
method specification [`Deposit`](/sdk/python/api/accounts/wallet#deposit).
1919

2020
For a complete example of how to execute the deposit workflow, take a look at the following:
2121
[Deposit ETH and ERC20 token](https://github.com/zksync-sdk/zksync2-examples/blob/main/python/01_deposit.py).
2222

2323
## Request execute
2424

2525
`Wallet` and `L1Signer` objects provide an option to request execution of L2 transaction from L1.
26-
For more information, please refer to the method specification [`request_execute`](/sdk/python/api/accounts/accounts#requestexecute).
26+
For more information, please refer to the method specification [`request_execute`](/sdk/python/api/accounts/wallet#requestexecute).
2727

2828
## Base cost
2929

3030
`Wallet` object provides an option to calculate base cost for L2 transaction. For more information, please refer to the
31-
method specification [`getBaseCost`](/sdk/python/api/accounts/accounts#getbasecost).
31+
method specification [`getBaseCost`](/sdk/python/api/accounts/wallet#getbasecost).
3232

3333
## Claim failed deposit
3434

3535
`Wallet` object provides a claim fail deposit workflow. For more information, please refer to the method specification
36-
[`claimFailedDeposit`](/sdk/python/api/accounts/accounts#claimfaileddeposit).
36+
[`claimFailedDeposit`](/sdk/python/api/accounts/wallet#claimfaileddeposit).
3737

3838
## Finalize withdraw
3939

4040
`Wallet` object provides a finalize withdraw workflow. For more information, please refer to the method specification
41-
[`finalizeWithdrawal`](/sdk/python/api/accounts/accounts#finalizewithdrawal).
41+
[`finalizeWithdrawal`](/sdk/python/api/accounts/wallet#finalizewithdrawal).
4242

4343
## Withdrawal
4444

45-
`Wallet` object provides a withdrawal workflow. For more information, please refer to the method specification [`Deposit`](/sdk/python/api/accounts/accounts#deposit).
45+
`Wallet` object provides a withdrawal workflow. For more information, please refer to the method specification [`Deposit`](/sdk/python/api/accounts/wallet#deposit).
4646

4747
For a complete example of how to execute the deposit workflow, take a look at the following:
4848
[Withdraw ETH and ERC20 token](https://github.com/zksync-sdk/zksync2-examples/blob/main/python/09_withdrawal.py).

0 commit comments

Comments
 (0)