Cross-Chain Token Transfers with Wormhole Connect#
Introduction#
In this tutorial, we’ll explore how to integrate Wormhole Connect to enable cross-chain token transfers and interactions. Wormhole Connect offers a simplified interface for developers to facilitate seamless token transfers between blockchains. Using Wormhole Connect, you can easily bridge assets across multiple ecosystems without diving into the complex mechanics of cross-chain communication.
While this tutorial will guide you through the process using a specific blockchain as an example, the principles and steps outlined here can be applied to any blockchain supported by Wormhole. In this example, we’ll work with Sui as our source blockchain and Avalanche Fuji as the destination blockchain.
Prerequisites#
To get started with Wormhole Connect, we'll first need to set up a basic environment that allows for cross-chain token transfers. Before starting this tutorial, ensure you have the following:
- Node.js and npm installed on your machine
- A Sui wallet set up and ready for use
- A compatible wallet for Avalanche Fuji, such as MetaMask
- Testnet tokens for Sui and Fuji to cover gas fees
Set Up Connect for Sui Transfers#
Create a React Project#
Start by setting up your React app:
-
Open your terminal and run the following command to create a new React app:
-
Navigate into the project directory:
Install Wormhole Connect#
Next, install the Wormhole Connect package as a dependency by running the following command inside your project directory:
Integrate Connect into the Application#
Now, we need to modify the default App.js
file to integrate Wormhole Connect. We are going to use version V1.0, make sure to check which version of connect you are using. Open src/App.js
and replace the content with the following code:
import './App.css';
import WormholeConnect, {
WormholeConnectConfig,
WormholeConnectTheme,
} from '@wormhole-foundation/wormhole-connect';
function App() {
const config: WormholeConnectConfig = {
network: 'Testnet',
chains: ['Sui', 'Avalanche'],
ui: {
title: 'SUI Connect TS Demo',
},
};
const theme: WormholeConnectTheme = {
mode: 'dark',
primary: '#78c4b6',
};
return <WormholeConnect config={config} theme={theme} />;
}
export default App;
- Set
network
totestnet
- this ensures that Wormhole Connect uses the testnet environment - Set
chains
to['Sui', 'Avalanche']
- configures the app to allow transfers between Sui and Avalanche Fuji, the testnet for Avalanche
Customize Wormhole Connect#
To further customize Wormhole Connect for your application, such as adjusting the UI, adding custom tokens, or configuring specific chain settings, you can refer to the Wormhole Connect Configuration guide.
Run the Application#
Make sure you’re in the root directory of your React app, and run the following command to start the application:
Now your React app should be up and running, and Wormhole Connect should be visible on http://localhost:3000/. You should see the Wormhole Connect component, which will include a UI for selecting networks and tokens for cross-chain transfers.
Transfer Tokens from Sui to Fuji#
Before transferring token ensure you have enough testnet SUI and Fuji tokens to cover the gas fees for the transfer.
To transfer tokens from Sui to Fuji in the Wormhole Connect interface:
- Select Sui as the source network, connect your Sui wallet, and choose SUI as the asset you wish to transfer
- Choose Fuji as the destination network and connect your wallet with the Fuji network
-
Enter the amount of SUI tokens you wish to transfer
-
Choose to view other routes
-
Select the manual bridge option, which will require two transactions: one on the source chain (Sui) and one on the destination chain (Fuji)
Note
It is recommended to use the manual bridge option for this tutorial. The automatic bridge feature is currently undergoing improvements, while the manual bridge ensures that transfers complete successfully.
-
Review and confirm the transfer on Sui. This will lock your tokens on the Sui chain
-
Follow the on-screen prompts to approve the transaction. You will be asked to sign with your Sui wallet
Once the transaction has been submitted, Wormhole Connect will display the progress of the transfer. Monitor the status until you’re prompted to complete the transaction on the destination chain. You can also track your transactions on Wormholescan.
Claim Tokens on Fuji#
After the Sui transaction is complete, confirm the final transaction on Fuji by claiming the wrapped tokens. You will be asked to confirm the transaction with your Fuji wallet.
Once confirmed, check your Fuji wallet to verify that the wrapped SUI tokens have been successfully received.