UNPKG

@bigmi/core

Version:

TypeScript library for Bitcoin apps.

13 lines (11 loc) 365 B
import type { RpcMethods } from '../types.js' import { getBalance } from './getBalance.js' import { getTransactionFee } from './getTransactionFee.js' import { getUTXOs } from './getUTXOs.js' import { getXPubAddresses } from './getXPubAddresses.js' export const blockchairMethods: RpcMethods = { getBalance, getUTXOs, getTransactionFee, getXPubAddresses, }