UNPKG

@q-dev/gdk-sdk

Version:

Typescript Library to interact with GDK Contracts

9 lines (8 loc) 437 B
import { ParameterType } from "../types"; export declare function getParameter(name: string, value: any, type: ParameterType): { name: string; value: string; solidityType: ParameterType; }; export declare const getABINameFromSituationName: (situationName: string) => "DAOMemberStorage" | "DAOParameterStorage" | "DAOVoting"; export declare const filterParameter: (parameters: any, type: ParameterType, name?: string) => any;