This package provides a gRPC client for connecting to BCHD from web applications.
** - For node.js applications that need to connect to a local BCHD instance you need to use the grpc-bchrpc-node
npm package.
$ npm i grpc-bchrpc-web
<script src='https://unpkg.com/bchrpc'></script>
- Install Protocol Compiler from: https://github.com/protocolbuffers/protobuf
npm i
npm run build
In this simple example we create a new client that connects to bchd.greyh.at:8335
and calls the getRawTransaction
rpc endpoint and prints the result to the console. We use reversedHashOrder: true
to automatically reverse the txid endianness because BCHD expects to receive transaction hashes without endianness reversed.
let grpc = new GrpcClient();
let txid = "11556da6ee3cb1d14727b3a8f4b37093b6fecd2bc7d577a02b4e98b7be58a7e8";
let res = await grpc.getRawTransaction({ hash: txid, reversedHashOrder: true });
console.log(Buffer.from(res.getTransaction_asU8()).toString('hex'));
This package can be used with node.js by including DOM library imports with a compiler (e.g., TypeScript). The BCHD instance needs to be behind a reverse proxy server (e.g., https://bchd.greyh.at:8335
), connecting to a local instance of BCHD requires use of the grpc-bchrpc-node
npm package.
First, add "DOM" as a library to compile the source with, for example, in your tsconfig.json
:
{
"compilerOptions": {
"lib": ["es2015", "es2017", "esnext", "DOM"],
...
}
...
}
Next, add the imports to your code:
// Do this first, so that we can call this library from node.
import { grpc, GrpcClient, NodeHttpTransport } from "grpc-bchrpc-web";
grpc.setDefaultTransport(NodeHttpTransport());
let client = new GrpcClient();
// calls to your client
...
- This update includes support for the new SLP index feature currently being tested for BCHD. When the BCHD SLP index is enabled the full node will prevent accidental SLP token burns by rejecting invalid SLP transactions from connected gRPC clients. This feature caused a minor change in the usage of the
SubmitTransaction()
method, whereskipSlpValidityChecks: true
needs to be added as a parameter if the BCHD full node does not have SLP indexing enabled. - Breaking change: Replaced
reverseHash
parameter withreversedHashOrder
.
- Add unpkg support for web browsers, updated readme instructions.
- Updates for node.js transport
- Add method
getRawMempool
- Add method
getUnspentOutput
- Some linting
- Hot fix update in tsconfig
- Add
subscribeTransactions
andsubscribeBlocks
methods - Update
submitTransaction
to match node version - Add unit tests
- Add coverage for unit tests