UNPKG

wowok

Version:

Wowok Blockchain TypeScript API

10 lines (9 loc) 467 B
import type { WowClient } from "../../client/index.js"; import type { BuildTransactionOptions } from "../resolve.js"; import type { Transaction, TransactionResult } from "../Transaction.js"; export declare function coinWithBalance({ type, balance, useGasCoin, }: { balance: bigint | number; type?: string; useGasCoin?: boolean; }): (tx: Transaction) => TransactionResult; export declare function getWowClient(options: BuildTransactionOptions): WowClient;