wallet-storage-client
Version:
Client only Wallet Storage
7 lines • 707 B
TypeScript
import { CreateActionResult, SendWithResult, SignActionSpend } from '@bsv/sdk';
import { Transaction } from "@bsv/sdk";
import { PendingSignAction, sdk, Wallet } from "../../index.client";
export declare function createAction(wallet: Wallet, auth: sdk.AuthId, vargs: sdk.ValidCreateActionArgs): Promise<CreateActionResult>;
export declare function completeSignedTransaction(prior: PendingSignAction, spends: Record<number, SignActionSpend>, wallet: Wallet): Promise<Transaction>;
export declare function processAction(prior: PendingSignAction | undefined, wallet: Wallet, auth: sdk.AuthId, vargs: sdk.ValidProcessActionArgs): Promise<SendWithResult[] | undefined>;
//# sourceMappingURL=createAction.d.ts.map