Подскажите, почему выскакивает ошибка:
tronweb_1.TronWeb is not a constructor?
trc.service.ts
import { Injectable } from "@nestjs/common";
import { TronWeb } from "tronweb";
@Injectable()
export class TrcService {
tronWebCall() {
return new TronWeb({ // ошибка здесь //
fullHost: 'https://api.trongrid.io',
headers: { 'TRON-PRO-API-KEY': process.env.TRONGRID_API_KEY },
});
}
async createAccount(request) {
try {
const tronWeb = this.tronWebCall();
const response = await tronWeb.createAccount();
return true;
} catch (e) {
return e.message;
}
}
}