UNPKG

essefuga

Version:

A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps

6 lines (4 loc) 268 B
export type SendReturnResult = { result: any } export type SendReturn = any export type Send = (method: string, params?: any[]) => Promise<SendReturnResult | SendReturn> export type SendOld = ({ method }: { method: string }) => Promise<SendReturnResult | SendReturn>