UNPKG

@taquito/taquito

Version:

High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.

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