npm i grpc-graphsearch-node
- Install Protocol Compiler from: https://github.com/protocolbuffers/protobuf
npm i
npm run build
let grpc = new GraphSearchClient({ url: "<url to a gs++ server>", notls: true });
let txid = "598c6572b70680710560d2ab40cabfde3156353ec5da217e18a8519843ff4423";
let res;
(async () => { res = await grpc.graphSearchFor({ hash: txid, reversedHashOrder: true }))();
res.forEach(i => console.log(res.getTxdataList_asU8());
- Hot fix to fix bad 0.2.0 publish to npm
- Added
notls
option to explicitly connect without ssl. - Updated gRPC version and build scripts
- Added built pb files to github
- Updated unit tests
- Update default URL to gs.fountainhead.cash
- Update default parameters
- Updated proto file
- Added 'reveredHashOrder' and 'excludeList' options to graphSearchFor() client method
- Updated package name
- Create promise based method for graphSearch(txid);