Contract Address를 식별 값으로 특정 블록체인 환경의 Contract ABI Code 정보를 반환합니다. Contract Address는 스마트 컨트랙트를 식별할 수 있는 고유한 값입니다. 개발자는 ABI Code 정보를 통해 스마트 컨트랙트 함수를 실행하는데 필요한 정보를 확인할 수 있습니다.
Response
Name | Type | Required | Description |
---|---|---|---|
anonymous | Bool | Optional | True if the event was declared as anonymous. |
inputs | Object[] | True | Inputs object array. |
name | String | Optional | The name of the function (Only present for function types) |
outputs | Object[] | Optional | outputs object array. |
stateMutability | String | Optional | A string with one of the following values. |
type | String | True | A string with one of the following values. |
inputs
Name | Type | Required | Description |
---|---|---|---|
indexed | Bool | Optional | true if the field is part of the log’s topics, false |
internalType | String | True | Type of input value used internally. |
name | String | True | Name of the parameter |
type | String | True | Type of input value. |
outputs
Name | Type | Required | Description |
---|---|---|---|
indexed | Bool | Optional | true if the field is part of the log’s topics, false |
internalType | String | True | Type of output value used internally. |
name | String | True | Name of the parameter |
type | String | True | Type of input value. |