Get ABI code from contract ID

Returns Contract ABI Code information of a specific blockchain environment with Contract Id as an identification value. Contract Id is a unique value that can identify a smart contract. Developers can check the information needed to execute smart contract functions through ABI Code information.

Response

NameTypeRequiredDescription
anonymousBoolOptionalTrue if the event was declared as anonymous.
inputsObject[]TrueInputs object array.
nameStringOptionalThe name of the function. (Only present for function types)
outputsObject[]OptionalOutputs object array.
stateMutabilityStringOptionalA string with one of the following values.
pure : Function which does not read chain state.
view : Function which does not modify chain state.
nonpayable : Function which does not accept coin.
payable: Function which accepts coin.
typeStringTrueA string with one of the following values.
'function' 'constructor' 'event'

inputs object array

NameTypeRequiredDescription
indexedBoolOptionalTrue if the field is part of the log’s topics, false
if it one of the log’s data segment.
internalTypeStringTrueType of input value used internally.
nameStringTrueName of the parameter.
typeStringTrueType of input value.

outputs object array

NameTypeRequiredDescription
indexedBoolOptionalTrue if the field is part of the log’s topics, false
if it one of the log’s data segment.
internalTypeStringTrueType of output value used internally.
nameStringTrueName of the parameter.
typeStringTrueType of input value.
Language
Click Try It! to start a request and see the response here!