Skip to content

Commit

Permalink
fix: fix errors in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Ngozi-Txfusion committed Jul 26, 2024
1 parent 6b2edd6 commit f968679
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
2 changes: 2 additions & 0 deletions content/sdk/20.go/01.guides/00.getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -943,4 +943,6 @@ func main() {
}
::
::callout{icon="i-heroicons-light-bulb"}
Examples are configured to interact with `ZKsync Era`, and `Sepolia` test networks.
::
8 changes: 4 additions & 4 deletions content/sdk/20.go/01.guides/02.accounts-l1-l2.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ For a comprehensive example demonstrating the deposit workflow, refer to the fol

::collapsible

```sh
```bash
package main

import (
Expand Down Expand Up @@ -132,7 +132,7 @@ func main() {
- Deposit ERC20 tokens

::collapsible
```sh
```bash
package main
Expand Down Expand Up @@ -297,7 +297,7 @@ For a complete example of how to execute the deposit workflow, take a look at th
::collapsible
```sh
```bash
package main
import (
Expand Down Expand Up @@ -359,7 +359,7 @@ func main() {
- Withdraw ERC20 token
::collapsible
```sh
```bash
package main
Expand Down
3 changes: 3 additions & 0 deletions content/sdk/30.python/01.guides/00.getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -384,4 +384,7 @@ if __name__ == "__main__":
f"{zk_web3.zksync.get_balance(paymaster_address, EthBlockParams.LATEST.value)}")
print(f"Paymaster Crown token balance after mint: {token_contract.functions.balanceOf(paymaster_address).call()}")
::
::callout{icon="i-heroicons-light-bulb"}
Examples are configured to interact with `ZKsync Era` and `Sepolia` test networks.
::
4 changes: 4 additions & 0 deletions content/sdk/60.rust/00.getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,3 +306,7 @@ let withdraw_receipt_l1 = zk_wallet_2.get_eth_provider().unwrap().get_transactio

[sdk]: https://github.com/lambdaclass/zksync-web3-rs/
[tokio]: https://tokio.rs/

::callout{icon="i-heroicons-exclamation-triangle" color="amber"}
For development and testing, it is recommended to use burner wallets. Avoid using real private keys to prevent security risks.
::
4 changes: 4 additions & 0 deletions content/sdk/60.rust/contract-deployment-and-interaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,3 +296,7 @@ async fn interact_with_contract() {
[test-node]: https://github.com/matter-labs/era-test-node/
[abi]: https://raw.githubusercontent.com/lambdaclass/zksync-web3-rs/7ae7bec0323d878beac2b74f00256f8589b4a206/examples/contract-deployment/Greeter.abi
[bin]: https://raw.githubusercontent.com/lambdaclass/zksync-web3-rs/7ae7bec0323d878beac2b74f00256f8589b4a206/examples/contract-deployment/Greeter.bin

::callout{icon="i-heroicons-exclamation-triangle" color="amber"}
For development and testing, it is recommended to use burner wallets. Avoid using real private keys to prevent security risks.
::

0 comments on commit f968679

Please sign in to comment.