get https://{HOST}/api/v1/request/contract/address//abi-code
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. 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. |
type | String | True | A string with one of the following values. "function" "constructor" "event" |
inputs
Name | Type | Required | Description |
---|---|---|---|
indexed | Bool | Optional | true if the field is part of the log’s topics, false if it one of the log’s data segment. |
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 if it one of the log’s data segment. |
internalType | String | True | Type of output value used internally. |
name | String | True | Name of the parameter |
type | String | True | Type of input value. |