Installation

To get started with Web Link SDK, clone the GitHub repository, and review the example application.

Next, you will need to install the @meshconnect/web-link-sdk package.

With npm (link):

npm install --save @meshconnect/web-link-sdk

With yarn:

yarn add @meshconnect/web-link-sdk

Then import the necessary components and types:

import {
  Link,
  LinkPayload,
  TransferFinishedPayload,
  createLink
} from '@meshconnect/web-link-sdk'

Creating Link Connection

The createLink function accepts one argument, a configuration Object typed LinkOptions and returns an Object with two functions, openLink and closeLink.

Calling openLink will display the Link UI in an iframe, and the overlay around it.
Calling the closeLink will close the already displayed Link UI. Please note, that the Link UI will close itself once the user finishes their workflow in Link UI.

createLink arguments

KeyTypeDescription
clientIdstringA Client ID, unique to your company, which can be obtained at https://dashboard.meshconnect.com/company/keys
onIntegrationConnectedcallbackA callback function that is called when an integration is successfully connected.
The function should expect an argument typed LinkPayload.
onExit (optional)callbackA callback function, that is called, when the Link UI is closed.
The function should expect two arguments:

1. Nullable error string as an argument.
2. Nullable summary object.
onTransferFinished (optional)callbackA callback function that is called when an asset transfer is finished.
The function should expect an argument typed TransferFinishedPayload.
onEvent (optional)callbackA callback function that is called when various events occur within the Link UI.
The function should expect an argument typed LinkEventType.
See Link UI Events for more details on event types.
accessTokens (optional)Array of IntegrationAccessTokenThese access tokens are used to initialize crypto transfers flow at 'Select asset step’ using previously obtained integration auth_tokens .
See Link Initialization and Use Cases for more details.
transferDestinationTokens (optional)Array of IntegrationAccessTokenThese access tokens are used to initialize crypto transfers flow at 'Select asset step’ using previously obtained integration auth_tokens .
See Link Initialization and Use Cases for more details.

createLink code example

const meshLink = 
		createLink({
				clientId: 'clientId',
        onIntegrationConnected: (payload) => {},
        onExit: (error) => {},
        onTransferFinished: (transferData) => {},
        onEvent: (ev) => {},
				accessTokens: [],
				transferDestinationTokens: []
		})

onIntegrationConnected

The onIntegrationConnected callback is called when an integration is successfully connected. It takes one argument called payload with the type of LinkPayload

LinkPayload properties

KeyTypeDescription
accessToken (nullable)Object of type AccessTokenPayloadThe an accessToken payload is returned, when a user successfully connects an integration.
It contains all the necessary data to interact with the users connected account via the Mesh API.
Make sure, that you handle this data securely and you follow our recommended best practices.
See the type definition on our GitHub.
delayedAuth (nullable)Object of type DelayedAuthPayloadThe a delayedAuth payload is returned, when a user successfully connects an Interactive Brokers account for the first time.
It contains a refresh_token that can be exchanged into an auth_token in 24 hours, using the Mesh API.
See the type definition on our GitHub.

onExit

The onExit callback is called, when the Link UI is closed. This can be due to an error, or the user can close the Link UI by choosing so.
It takes two arguments:

  1. error with the type of string, which is the reason, why the Link UI was closed in an user friendly message.
  2. summary object that contains session summary in following format
{
  /**
   *   Current page of application. Possible values:
   * `startPage`
   * `integrationsCatalogPage`
   * `integrationLoginPage`
   * `integrationMfaPage`
   * `integrationAccountSelectPage`
   * `integrationConnectedPage`
   * `errorPage`
   * `transferKycPage`
   * `transferHoldingSelectionPage`
   * `transferNetworkSelectionPage`
   * `transferAmountSelectionPage`
   * `transferPreviewPage`
   * `transferMfaPage`
   * `transferFundingPage`
   * `transferExecutedPage`
   * `termsAndConditionPage`
   *
   * This list may change in future.
   */
  page: string
  /** Selected integration */
  selectedIntegration?: {
    id?: string
    name?: string
  }
  /** Transfer information */
  transfer?: {
    previewId?: string
    symbol?: string
    amount?: number
    amountInFiat?: number
    transactionId?: string
    networkId?: string
  }
  errorMessage?: string
}

onTransferFinished

The onTransferFinished callback is called, when an asset transfer is finished successfully or unsuccessfully.
It takes one argument called payload with the type of TransferFinishedSuccessPayload or TransferFinishedErrorPayload.

TransferFinishedSuccessPayload properties

See the type definition on our GitHub.

KeyTypeDescription
statusstringThe status of the transfer in case of TransferFinishedSuccessPayload it will be always success
txIdstringThe identifier of the executed transaction, received from the integration
fromAddressstringAddress where the crypto funds were sent from
toAddressstringAddress where the crypto funds were sent to
symbolstringThe symbol of the crypto asset
amountstringThe amount in the given cryptocurrency that was sent
networkIdstringId of the network over which the transaction was executed.
See more about network IDs in our API reference

TransferFinishedErrorPayload properties

See the type definition on our GitHub.

KeyTypeDescription
statusstringThe status of the transfer in case of TransferFinishedErrorPayload it will be always error
errorMessagestringA user friendly message on why the transaction failed.

onEvent

The onEvent callback is called, when various events occur within the Link UI.
It takes one argument, called event with the type of LinkEventType.

See Link UI Events for more details on events and their type definitions.

accessTokens

The accessTokens parameter is used to initialize crypto transfers flow at the 'Select asset step’ using previously obtained integration auth_token. It can be used if you have a valid auth_token and want to bypass authentication to jump right into a transfer.

The type of the accessTokens parameter is an array of IntegrationAccessToken, however, please note, only the first item in the array will be taken into account.

See the type definition on our GitHub.

accessTokens code example

const accessTokens = 
	[
	        {
	          accountId: 'accountId',
	          accountName: 'accountName',
	          accessToken: 'accessToken',
	          brokerType: 'brokerType',
	          brokerName: 'brokerName',
	        },
	 ]

const meshLink = 
		createLink({
				clientId: 'clientId',
        onIntegrationConnected: (payload) => {},
        onExit: (error) => {},
        onTransferFinished: (transferData) => {},
        onEvent: (ev) => {},
				accessTokens: accessTokens, // Provide a previously obtained integration auth_token 
				transferDestinationTokens: []
		})

transferDestinationTokens

The transferDestinationTokens are used for crypto transfers flow. It is an alternative way of providing target addresses for crypto transfers by using previously obtained integration auth_tokens.

See Link initialization and use cases for more details.

The type of the transferDestinationTokens parameter is an array of IntegrationAccessToken.

See the type definition on our GitHub.

transferDestinationTokens code example

const transferDestinationTokens = 
	[
	        {
	          accountId: 'accountId',
	          accountName: 'accountName',
	          accessToken: 'accessToken',
	          brokerType: 'brokerType',
	          brokerName: 'brokerName',
	        },
	 ]

const meshLink = 
		createLink({
				clientId: 'clientId',
        onIntegrationConnected: (payload) => {},
        onExit: (error) => {},
        onTransferFinished: (transferData) => {},
        onEvent: (ev) => {},
				accessTokens: [],  
				transferDestinationTokens: transferDestinationTokens // Provide a previously obtained integration auth_tokens to use as destination address
		})

openLink()

Calling openLink will display the Link UI in an iframe, and the overlay around it.

It takes linkToken as an argument, which can be obtained from the POST /api/v1/linktoken endpoint. Request must be preformed from the server side because it requires the client secret and ID.

See more about obtaining the linkToken and initialization use cases

openLink code example

const meshLink = 
		createLink({
				clientId: 'clientId',
        onIntegrationConnected: (payload) => {},
        onExit: (error) => {},
        onTransferFinished: (transferData) => {},
        onEvent: (ev) => {},
				accessTokens: [],
				transferDestinationTokens: []
		})

meshLink.openLink('linktoken') // Open the Link UI popup

closeLink()

Calling the closeLink will close the already displayed Link UI. Please note, that the Link UI will close itself once the user finishes their workflow in Link UI.

Typescript support

TypeScript definitions for @meshconnect/web-link-sdk are built into the NPM package.