@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
29 lines (25 loc) • 849 B
text/typescript
// Auto synced from github actions. Don't change this file
import { Bitcoind } from '../../types.js'
import request from '../../rpc-request.js'
type GenerateBlockParams = {
bitcoind: Bitcoind
/* The address or descriptor to send the newly generated bitcoin to. */
output: string
/* [
"rawtx/txid", (string)
...
] */
transactions: Array<unknown>
/* Whether to submit the block before the RPC call returns or to return it as hex. */
submit?: boolean
}
/**
* generateblock "output" ["rawtx/txid",...] ( submit )
*
* Mine a set of ordered transactions to a specified address or descriptor and return the block hash.
*
*/
export function generateBlock(params: GenerateBlockParams) {
const { bitcoind, ...methodParams } = params
return request({ method: 'generateblock', params: methodParams }, bitcoind)
}