UNPKG

@mavrykdynamics/taquito-local-forging

Version:

Provide local forging functionality to be with taquito

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