diff --git a/index.js b/index.js index 5037dd5..7c83baf 100644 --- a/index.js +++ b/index.js @@ -134,6 +134,9 @@ class ElectrumClient extends Client { blockchainScripthash_subscribe(scripthash) { return this.request('blockchain.scripthash.subscribe', [scripthash]); } + blockchainBlock_header(height) { + return this.request('blockchain.block.header', [height]); + } blockchainBlock_headers(start_height, count) { return this.request('blockchain.block.headeres', [start_height, count]); }