Endpoint Configuration
Create TvmClient
const client = new TvmClient({
network: {
endpoints: [
'your-endpoint-here'
]
}
});Multiple endpoints configuration
const client = new TvmClient({
network: {
endpoints: [
'ENDPOINT_URL1',
'ENDPOINT_URL2',
'ENDPOINT_URL3'
]
}
});Last updated