UNPKG

@block-auth.io/blockauth-sdk

Version:

Block-Auth Auth SDK is a SaaS service blockchain based authentication service. It provides a simple and secure way to authenticate users in your application.

18 lines (17 loc) 343 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RpcClient = void 0; /** * This class allow you to use WebSocket API * * examples: * * const client = new WsClient(); * */ class RpcClient { constructor() { this.rpcUrl = 'https://rpc.block-auth.io/'; } } exports.RpcClient = RpcClient;