UNPKG

@decent-bet/solido

Version:

Code first contract entity mapper for Solidity based blockchains like Ethereum, Vechain, Tron

8 lines (7 loc) 450 B
import { IMethodOrEventCall, IMethodConfig } from '../types'; import { SolidoContract } from '../core/SolidoContract'; export declare function _Write(name: string, contract: SolidoContract, args: any[], options?: IMethodOrEventCall): { request: (config: IMethodConfig) => Promise<any>; call: (config?: IMethodConfig) => Promise<any>; }; export declare function Write(options?: IMethodOrEventCall): (target: any, propertyKey: string) => void;