Payments
Configuring Payments with Mesh Link
This guide explains how to configure Link to facilitate cryptocurrency payments within your application. You’ll learn how to define accepted payment assets, amounts, and how to apply fees.
Understanding Payment Configuration
When using Link to process payments, you’ll utilize the TransferOptions
object within your link token request to specify the parameters of the payment transaction. This includes defining the acceptable cryptocurrencies, their respective destination addresses, and the payment amount.
Specifying Payment Assets and Destination Addresses
The ToAddresses
array within TransferOptions
allows you to define the cryptocurrencies users can pay with and the corresponding receiving addresses. Each object in this array represents a payment option.
Important: For each entry in the ToAddresses
array, you must provide the Mesh-specific Unique Identifier (UID) for the network on which the supported token resides. Refer to the Mesh Connect documentation for a comprehensive list of supported tokens, networks, and their Mesh UIDs: Tokens | Networks | Integrations
Accepting Payments with Multiple Cryptocurrencies
To allow users to pay with a variety of cryptocurrencies, include multiple objects within the ToAddresses
array. For each object, specify the network, symbol, and destination address.
Link Token Request Body:
NetworkId
: The Mesh UID of the network.Symbol
: The cryptocurrency symbol.Amount
: The amount the user is expected to pay, in the cryptocurrency specified by the Symbol.Address
: The recipient’s cryptocurrency address.TransactionId
: A unique identifier for this payment transaction. This is crucial for mapping payments to orders or other internal systems.
Streamlined Payments with a Single Asset and Amount
If you want to pre-define a single payment option (one cryptocurrency and amount), Link can streamline the user flow. When you provide AmountInFiat
and a single network/token/address combination, Link will bypass asset and network selection, taking the user directly to the payment preview.
Link Token Request Body:
AmountInFiat
: The payment amount in fiat currency (e.g., USD).- Other parameters are the same as in Scenario 1.
Adding Payment Processing Fees
You can apply a client fee to payment transactions using the ClientFee
parameter in the link token request.
Important:
- This fee should only be used for Payments, where the transfer destination is an address owned by your business.
- Do not use this for Deposits, where the transfer destination is an address owned by the end-user.
- The
ClientFee
will override any default fee configured in your Mesh dashboard for the transaction.
Link Token Request Body (with Client Fee):
ClientFee
: A decimal representing the fee percentage (e.g.,0.025
for 2.5%).