UNPKG

@xchainjs/xchain-zcash

Version:

Custom Zcash client and utilities used by XChainJS clients

13 lines (12 loc) 435 B
import { TxHash } from '@xchainjs/xchain-client'; import { Address } from '@xchainjs/xchain-util'; import { UtxoClientParams } from '@xchainjs/xchain-utxo'; import { Client } from './client'; declare class ClientLedger extends Client { constructor(params: UtxoClientParams); getApp(): Promise<void>; getAddress(): string; getAddressAsync(): Promise<Address>; transfer(): Promise<TxHash>; } export { ClientLedger };