EVM To Substrate Token Transfer Example
In the following example, we will use the TESTNET
environment to perform a cross-chain ERC-20 transfer with the Goerli Phala gPHA
token. The transfer will be initiated on the EVM-side via the Goerli Ethereum testnet and received on the Substrate-side via the Rococo-Phala testnet.
EVM-to-Substrate Token Transfer Example
This is an example script that demonstrates the functionality of the Sygma SDK and the wider Sygma ecosystem of bridges, fee handlers, and relayers. The script showcases an ERC-20 token transfer between two networks using the Sygma SDK. The complete example can be found in this repo.
Prerequisites
Before running the script, ensure that you have the following:
- Node.js installed on your machine
- Yarn (version 3.4.1 or higher)
- Access to an Ethereum provider
- A wallet funded with
ERC20LRTest
orgPHA
tokens from the Sygma faucet - Goerli ETH for gas
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 git@github.com: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 sdk:build
- Usage
To send an ERC-20 example transfer from EVM to Substrate, cd
into the example folder examples/evm-to-substrate-fungible-transfer
and run:
cd examples/evm-to-substrate-fungible-transfer
yarn run transfer
The example will use ethers
in conjunction with the sygma-sdk to create a transfer from Goerli to Rococo-Phala with a gPHA
token. It will be received on Rococo-Phala as the native PHA
token.
Script Functionality
This example script performs the following steps:
- Initializes the SDK by importing the required packages and defining the constants for the script.
import { EVMAssetTransfer, Environment } from "@buildwithsygma/sygma-sdk-core";
import { Wallet, providers } from "ethers";
const ROCOCO_PHALA_CHAIN_ID = 5231;
const DESTINATION_ADDRESS = "5CDQJk6kxvBcjauhrogUc9B8vhbdXhRscp1tGEUmniryF1Vt";
const RESOURCE_ID =
"0x0000000000000000000000000000000000000000000000000000000000001000"; // This is the resource ID for the gPHA token according to Sygma's testnet environment
- Configures the dotenv module and sets the
privateKey
as a value to be pulled from the.env
file.
import dotenv from "dotenv";
dotenv.config()
const privateKey = process.env.PRIVATE_KEY;
if (!privateKey) {
throw new Error("Missing environment variable: PRIVATE_KEY");
}
- Defines the ERC-20 transfer function.
export async function erc20Transfer(): Promise<void> {
- Set up the provider, wallet, and asset transfer objects using the TESTNET environment.
const provider = new providers.JsonRpcProvider(
"https://rpc.goerli.eth.gateway.fm/"
);
const wallet = new Wallet(
privateKey as string,
provider
);
const assetTransfer = new EVMAssetTransfer();
await assetTransfer.init(provider, Environment.TESTNET);
- Constructs a
transfer
object that defines the details of the ERC-20 token transfer using the previously declared constants, as well as the amount to be transferred.
const transfer = assetTransfer.createFungibleTransfer(
await wallet.getAddress(),
ROCOCO_PHALA_CHAIN_ID,
DESTINATION_ADDRESS,
RESOURCE_ID,
5000000000000000000 // 18 decimal places, so in this case, 5 gPHA tokens
);
- Retrieves the fee required to complete the transfer from the SDK.
- Builds the necessary approval transactions for the transfer and sends them using the Ethereum wallet. The approval transactions are required to authorize the transfer of ERC-20 tokens.
const fee = await assetTransfer.getFee(transfer);
const approvals = await assetTransfer.buildApprovals(transfer, fee);
for (const approval of approvals) {
const response = await wallet.sendTransaction(
approval as providers.TransactionRequest
);
console.log("Sent approval with hash: ", response.hash);
}
- Builds the final
transfer
transaction and sends it using the Ethereum wallet.
const transferTx = await assetTransfer.buildTransferTransaction(
transfer,
fee
);
const response = await wallet.sendTransaction(
transferTx as providers.TransactionRequest
);
console.log("Sent transfer with hash: ", response.hash);
}