Interface EvalRuleInput

An interface for eval rule (EVAL_RULE) input.

interface EvalRuleInput {
    address?: string;
    is_global?: boolean;
    ref?: string;
    timestamp?: number;
    value: any;
}

Properties

address?: string
is_global?: boolean
ref?: string
timestamp?: number
value: any