UNPKG

@taquito/local-forging

Version:

Local Tezos operation forging for Taquito.

10 lines (9 loc) 258 B
import { OperationContents } from '@taquito/rpc'; export interface ForgeParams { branch: string; contents: OperationContents[]; } export type ForgeResponse = string; export interface Forger { forge(params: ForgeParams): Promise<ForgeResponse>; }