/request/contract/address/:contractAddress/abi-code

Contract Address를 식별 값으로 특정 블록체인 환경의 Contract ABI Code 정보를 반환합니다. Contract Address는 스마트 컨트랙트를 식별할 수 있는 고유한 값입니다. 개발자는 ABI Code 정보를 통해 스마트 컨트랙트 함수를 실행하는데 필요한 정보를 확인할 수 있습니다.

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

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

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
URL
Click Try It! to start a request and see the response here!