UNPKG

@bigmi/core

Version:

TypeScript library for Bitcoin apps.

9 lines (7 loc) 208 B
import type { RpcMethods } from '../types.js' import { getBalance } from './getBalance.js' import { getUTXOs } from './getUTXOs.js' export const blockchairMethods: RpcMethods = { getBalance, getUTXOs, }