From 21fcb08234946a0b941a39cd8da4de9bd27b7fce Mon Sep 17 00:00:00 2001 From: bxpana <42230936+bxpana@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:06:58 +0100 Subject: [PATCH] chore: update python links (#57) Update 00.getting-started.md Change to python links instead of typescript --- content/sdk/30.python/00.getting-started.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/sdk/30.python/00.getting-started.md b/content/sdk/30.python/00.getting-started.md index 80693b07..c99e3e82 100644 --- a/content/sdk/30.python/00.getting-started.md +++ b/content/sdk/30.python/00.getting-started.md @@ -56,10 +56,10 @@ transaction = zksync_web3.zksync.eth_get_transaction_by_hash(hash); Also, the following examples demonstrate how to: -1. [Deposit ETH and tokens from Ethereum into ZKsync Era](https://github.com/zksync-sdk/zksync2-examples/blob/main/js/src/01_deposit.ts) -2. [Transfer ETH and tokens on ZKsync Era](https://github.com/zksync-sdk/zksync2-examples/blob/main/js/src/02_transfer.ts) -3. [Withdraw ETH and tokens from ZKsync Era to Ethereum](https://github.com/zksync-sdk/zksync2-examples/blob/main/js/src/04_withdraw.ts) -4. [Use paymaster to pay fee with token](https://github.com/zksync-sdk/zksync2-examples/blob/main/js/src/22_use_paymaster.ts) +1. [Deposit ETH and tokens from Ethereum into ZKsync Era](https://github.com/zksync-sdk/zksync2-examples/blob/main/python/01_deposit.py) +2. [Transfer ETH and tokens on ZKsync Era](https://github.com/zksync-sdk/zksync2-examples/blob/main/python/02_transfer.py) +3. [Withdraw ETH and tokens from ZKsync Era to Ethereum](https://github.com/zksync-sdk/zksync2-examples/blob/main/python/09_withdrawal.py) +4. [Use paymaster to pay fee with token](https://github.com/zksync-sdk/zksync2-examples/blob/main/python/15_use_paymaster.py) Full code for all examples is available [here](https://github.com/zksync-sdk/zksync2-examples/tree/main/python). Examples are configured to interact with `ZKsync Era` and `Sepolia` test networks.