import { grpc } from '@injectivelabs/grpc-web';
^^^^
SyntaxError: Named export 'grpc' not found. The requested module '@injectivelabs/grpc-web' is a CommonJS module, which may not support all module.exports as named exports.
CommonJS modules can always be imported via the default export, for example using:
import pkg from '@injectivelabs/grpc-web';
const { grpc } = pkg;
/@injectivelabs+sdk-ts@1.14.4_debug@4.3.4/node_modules/@injectivelabs/sdk-ts/dist/esm/client/BaseGrpcConsumer.js:1
import { grpc } from '@injectivelabs/grpc-web'; ^^^^ SyntaxError: Named export 'grpc' not found. The requested module '@injectivelabs/grpc-web' is a CommonJS module, which may not support all module.exports as named exports. CommonJS modules can always be imported via the default export, for example using:
import pkg from '@injectivelabs/grpc-web'; const { grpc } = pkg;