UNPKG

@dojima-wallet/operator-gateway

Version:

Operator gateway client involving dojima stack

13 lines (11 loc) 336 B
import { OperatorGatewayClient } from "./client"; export default class OperatorInit { client: OperatorGatewayClient; constructor(serverUrl: string, chainId?: string, prefix?: string) { this.client = new OperatorGatewayClient({ server: serverUrl, chainId, prefix, }); } }