Deposits
Configuring Crypto Deposits with Link
This guide explains how to configure Link to enable your users to deposit cryptocurrency assets into specified addresses. You’ll learn how to define the destination addresses and streamline the deposit experience.
Understanding Deposit Configuration via toAddresses
The toAddresses
array within the TransferOptions
object of your link token request is the primary mechanism for configuring where users can deposit their cryptocurrency assets. Each object in this array defines a specific cryptocurrency, the network it resides on, and the receiving address.
Key Requirement: For each item in the toAddresses
array, you must provide the Mesh-specific Unique Identifier (UID) for the target network. You can find a comprehensive list of supported tokens, networks, and their corresponding Mesh UIDs here: Tokens | Networks | Integrations.
Streamlined Deposits to a Single Crypto Address
For the most direct user experience, especially when you intend users to deposit a specific asset to a specific address, configure a single entry in the toAddresses
array. This will instruct the Link UI to skip the asset and network selection screens, taking the user directly to the connection and authorization steps.
Link Token Request Body:
NetworkId
: The Mesh UID of the target network (e.g., Ethereum Mainnet in this case).Symbol
: The symbol of the cryptocurrency being deposited (e.g., ETH).Address
: The receiving cryptocurrency address.
Offering Deposits for Multiple Crypto Tokens or Networks
To provide users with more flexibility in their deposit options, you can include multiple objects within the toAddresses
array. Each object will represent a specific token and the network it can be deposited over.
Link Token Request Body:
- Each object in the
ToAddresses
array defines a specific deposit option (Network and Symbol).
Seamless Return Customer Experience
Step 1: Retrieving the Access Token
During the initial connection, you’ll use the onIntegrationConnected
SDK event (more information about UI Events can be found here) to capture and save the accessToken
. You will need to construct the accessToken
object prior to sending it back to Mesh for the reconnection. Here’s how:
Key Points:
- Saving the Access Token: The most crucial step is to securely save the
accessToken
. Never store it directly in client-side code (e.g., local storage) for production applications. - User Association: Associate the
accessToken
with the corresponding user in your application’s database.
Step 2: Using the Access Token for Reconnections
The next time you initialize createLink
for the same user, include the stored accessToken
in the accessTokens
property:
Connecting Multiple Accounts
If a user has connected multiple accounts, you can store an array of accessTokens
and pass them to the accessTokens
property:
🚨 IMPORTANT — You will need a feature flag enabled on your backend to enable your user to select their desired account from the catalog. Please speak with your Mesh team to enable the feature.
In this case you need to provide an empty toAddresses
array to the LinkToken endpoint, to indicate that you wish to use the transfers workflow.
Important Reminders:
- Integration ID: Be sure to not include the integrationId when creating the linkToken for the reconnection. This will cause the Link UI to ignore the
accessTokens
provided. - Expiration: Access tokens have an expiration time (
expiresInSeconds
). You’ll need to handle token refreshes or re-authentication before the tokens expire. - Security: Always prioritize security when storing and handling access tokens.
Workflow:
- The user initiates a deposit within your application.
- You fetch a link token with an empty
ToAddresses
array. - On the client-side, you initialize
createLink
. - When the user goes through the Link flow, they will be presented with their previously connected accounts as potential deposit destinations.