Interface ActionPostRequest<T>

Response body payload sent via the Action POST Request

interface ActionPostRequest<T> {
    account: string;
    data?: Record<keyof T, string | string[]>;
}

Type Parameters

  • T = string

Hierarchy (view full)

Properties

Properties

account: string

base58-encoded public key of an account that may sign the transaction

data?: Record<keyof T, string | string[]>

Key-value map of parameter values from user's input

  • key - parameter name
  • value - input value (by default type of string, if multi-option, type of Array<string>