Не удается разрешить все параметры для ECPair: (?,?,?)
Я пытаюсь реализовать bitcoinjs-lib в новом угловом 4 приложении. Что я сделал:
npm install bitcoinjs-lib --save
npm install @types/bitcoinjs-lib --save
Мой app.component.ts:
import { Inject } from '@angular/core';
import { Component } from '@angular/core';
import { HDNode, Transaction, ECPair } from 'bitcoinjs-lib'
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'app';
constructor(private ecPair: ECPair){
console.log(this.ecPair.getAddress())
}
}
Успешно скомпилировано, но я попал в браузер:
Uncaught Error: Can't resolve all parameters for ECPair: (?, ?, ?).
at syntaxError (compiler.js:466)
Вот ECPair в node_modules:
export class ECPair {
constructor(d: BigInteger, Q?: null, options?: { compressed?: boolean, network?: Network });
constructor(d: null | undefined, Q: any, options?: { compressed?: boolean, network?: Network }); // Q should be ECPoint, but not sure how to define such type
d: BigInteger;
getAddress(): string;
...
}
Я понимаю, что он не знает, как создать его экземпляр из-за различных параметров типа, как я могу это исправить? Я пытался с @Inject, но не могу решить тоже.
Спасибо
1 ответ
Решение
Вы должны предоставить это правильно. В вашем @NgModule
Вы должны использовать что-то вроде этого:
@NgModule({
...
providers: [
...
{ ECPair, useFactory:()=>new ECPair(d,Q,options) }
]
})
Укажите соответствующие аргументы для d
Q
а также options
,