Installing TAC SDK
Getting started with TAC’s frontend SDK is straightforward. This guide will walk you through the installation process and initial setup.
Installation
Install the TAC SDK using npm or yarn:
You’ll also need to install peer dependencies if you haven’t already:
Basic Setup
Once you’ve installed the SDK, you can create an instance of TACK SDK in your application:
Configuration Options
The SDK can be configured with several options:
Advanced Configuration: Custom TON Provider
By default, the SDK uses public TON endpoints. For production applications, you might want to use your own endpoints:
Advanced Configuration: LiteClient (Node.js Only)
For Node.js environments, you can use lite clients for improved performance:
When using custom Lite Clients, don’t forget to call tacSdk.closeConnections()
when you’re done to prevent your application from hanging.
Verifying the Installation
To verify that everything is set up correctly, you can check the initialization:
Was this page helpful?