UNPKG

@taquito/local-forging

Version:

Provide local forging functionality to be with 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>; }