SDK Initialization
Properly initializing the TAC SDK is the first step to building a hybrid dApp. This guide explains how to create and configure a TAC SDK instance for your application. Creating a TAC SDK Instance
The TAC SDK uses a factory pattern for initialization. You’ll need to use the async create method rather than a constructor:
Always use the async TacSdk.create()
method, not the constructor. This ensures proper initialization of all SDK components.
Configuration Options
When initializing the SDK, you can provide various configuration options:
Available Configuration Options
The SDKParams type includes the following options:
Option | Type | Description |
---|---|---|
network | Network | Required. Specifies the TON network (TESTNET or MAINNET) |
delay | number | Optional. Delay (in seconds) for requests to the TON client. Default is 0 |
TONParams | TONParams | Optional. Custom parameters for TON side |
TACParams | TACParams | Optional. Custom parameters for TAC side |
customLiteSequencerEndpoints | string[] | Optional. Custom lite sequencer endpoints for API access |
Custom TON Client Configuration
You can provide a custom TON client for more control over TON interactions. This is useful for applications that need customized rate limiting or error handling:
Node.js-Specific Configuration
For Node.js environments, you can use lite clients for improved performance:
When using lite clients, remember to call tacSdk.closeConnections()
when you’re done to properly clean up resources. Otherwise, your Node.js script might hang.
Resource Cleanup
When using custom contract openers (especially with Node.js), you should close connections when you’re done:
Default Endpoints
If you don’t specify custom endpoints, the SDK uses these public endpoints:
Error Handling
The SDK initialization can throw errors if the configuration is invalid:
Common initialization errors include:
SettingError
: Settings contract at provided address does not contain required setting key
Was this page helpful?