ContractReadResponse

Data structure returned when performing a contract read on a blockchain.

Signature:

{
    type!: string,
    value!: any
}

Parameters:

ParameterRequiredTypeDescription
typeTrueStringThe type of the requested output
valueTrueAnyThe value of the requested output

Example:

{
    "type": "uint256",
    "value": 4
}

Function Types

📘