* added inputs to transaction builder

* verify should return boolean, fixed inputs

* added property private key (d) in ECPair class
This commit is contained in:
dlebrecht
2017-10-23 21:43:58 +02:00
committed by Sheetal Nandi
parent 0cc18fa090
commit 43a6d92869

View File

@@ -66,6 +66,8 @@ export class ECPair {
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;
getNetwork(): Network;