You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
slug: /sdk/examples/erc20/evm-example
id: examples-erc20-evm-example
title: EVM To EVM Token Transfer
description: Section that describes how to perform an EVM to EVM token transfer.
sidebar_position: 1
draft: false
EVM-to-EVM token transfer example
In the following example, we will use the TESTNET environment to perform a cross-chain ERC-20 transfer with 1 testnet USDC token. The transfer will be initiated on the EVM-side via the Cronos testnet and received on the EVM-side via the Sepolia Ethereum testnet.
This is an example script that demonstrates the functionality of the Sygma SDK and the wider Sygma ecosystem of relayers and bridge and handler contracts. The complete example can be found in this repo.
Prerequisites
Before running the script, ensure that you have the following:
An Ethereum provider (in case the hardcoded RPC within the script does not work)
A development wallet funded with ERC20LRTest tokens from the Sygma faucet (you can use the UI below; please allow some time for minting as testnet may be congested)
import App from '../../../../src/Faucet/App';
:::danger
We make use of the dotenv module to manage exported private keys with environment variables. Please note that accidentally committing a .env file containing private keys to a wallet with real funds, onto GitHub, could result in the complete loss of your funds. Never expose your private keys.
:::
Getting started
Clone the repository
Clone the sygma-sdk repository into a directory of your choice, and then cd into the folder:
git clone [email protected]:sygmaprotocol/sygma-sdk.git
cd sygma-sdk/
Install dependencies
Install the project dependencies by running:
yarn install
Build the SDK
Build the SDK by running the following command:
yarn build
Usage
This example uses the dotenv module to retrieve private keys. To run the example, you will need to configure your environment variable to include your test development account's exported private key. A .env.sample is provided as a template.
DO NOT COMMIT PRIVATE KEYS WITH REAL FUNDS TO GITHUB. DOING SO COULD RESULT IN COMPLETE LOSS OF YOUR FUNDS.
Create a .env file in the evm-to-evm example folder:
cd examples/evm-to-evm-fungible-transfer
touch .env
Replace between the quotation marks your exported private key:
PRIVATE_KEY="YOUR_PRIVATE_KEY_HERE"
To send an ERC-20 example transfer from EVM to EVM, run:
cd examples/evm-to-evm-fungible-transfer
yarn run transfer
The example will use ethers in conjunction with the sygma-sdk to create a transfer from Cronos to Sepolia with the ERC20LRTST token. It will be received on Sepolia as the ERC20LRTST token.
slug: /sdk/examples/erc20/evm-example
id: examples-erc20-evm-example
title: EVM To EVM Token Transfer
description: Section that describes how to perform an EVM to EVM token transfer.
sidebar_position: 1
draft: false
EVM-to-EVM token transfer example
In the following example, we will use the
TESTNET
environment to perform a cross-chain ERC-20 transfer with 1 testnetUSDC
token. The transfer will be initiated on the EVM-side via the Cronos testnet and received on the EVM-side via the Sepolia Ethereum testnet.This is an example script that demonstrates the functionality of the Sygma SDK and the wider Sygma ecosystem of relayers and bridge and handler contracts. The complete example can be found in this repo.
Prerequisites
Before running the script, ensure that you have the following:
ERC20LRTest
tokens from the Sygma faucet (you can use the UI below; please allow some time for minting as testnet may be congested)import App from '../../../../src/Faucet/App';
:::danger
We make use of the dotenv module to manage exported private keys with environment variables. Please note that accidentally committing a .env file containing private keys to a wallet with real funds, onto GitHub, could result in the complete loss of your funds. Never expose your private keys.
:::
Getting started
Clone the sygma-sdk repository into a directory of your choice, and then
cd
into the folder:Install the project dependencies by running:
Build the SDK by running the following command:
This example uses the
dotenv
module to retrieve private keys. To run the example, you will need to configure your environment variable to include your test development account's exported private key. A.env.sample
is provided as a template.DO NOT COMMIT PRIVATE KEYS WITH REAL FUNDS TO GITHUB. DOING SO COULD RESULT IN COMPLETE LOSS OF YOUR FUNDS.
Create a
.env
file in the evm-to-evm example folder:cd examples/evm-to-evm-fungible-transfer touch .env
Replace between the quotation marks your exported private key:
PRIVATE_KEY="YOUR_PRIVATE_KEY_HERE"
To send an ERC-20 example transfer from EVM to EVM, run:
cd examples/evm-to-evm-fungible-transfer yarn run transfer
The example will use
ethers
in conjunction with the sygma-sdk to create a transfer from Cronos to Sepolia with theERC20LRTST
token. It will be received on Sepolia as theERC20LRTST
token.Script functionality
This example script performs the following steps:
.env
file usingdotenv
. The script throws an error if the private key is not providedThe text was updated successfully, but these errors were encountered: