Arkane Connect has been published to npmjs.com. So by using npm, you can fetch it by executing the following:
npm i @arkane-network/arkane-connect
You can also download it directly via UNPKG CDN.
🧙 It is best to point Arkane Connect to a specific version when including its URL in your code. See https://unpkg.com/ for more info.
Create an ArkaneConnect instance with your Client ID with the following script. Your Arkane Client ID is required when calling this function, as it identifies your app to Arkane.
const arkaneConnect = new ArkaneConnect('YOUR_CLIENT_ID');
🧙 You need to register your app to get your private Client ID
The ArkaneConnect object is your entry point to the rest of the widget functionalities, below is its signature. You can connect to several networks and environments by using the ConstructorOption
'Environment'.
//Signature ArkaneConnectArkaneConnect(clientID:string, options?: ConstructorOptions)
After putting the 2 code snippets above into the editor, your app is now blockchain-enabled!