传入地址,判断是否地址格式有效,是否命中黑名单。
GET https://www.okx.com/api/v5/wallet/pre-transaction/validate-address
Parameter | Type | Required | Description |
---|---|---|---|
chainIndex | String | Yes | 链唯一标识 |
address | String | Yes | 地址 |
Parameter | Type | Description |
---|---|---|
addressType | String | 0 : 无效的地址格式 1 : 有效的用户地址 2 : 有效的合约地址 |
hitBlacklist | Boolean | false : 没有命中黑地址 true : 命中黑地址 |
tag | String | 黑地址标签类型,包括貔貅盘、网络钓鱼以及合约漏洞等类型 |
curl --location --request GET 'https://www.okx.com/api/v5/wallet/pre-transaction/validate-address?chainIndex=1&address=0xdf54b6c6195ea4d948d03bfd818d365cf175cfc2&addressType=0' \
--header 'Content-Type: application/json' \
--header 'OK-ACCESS-PROJECT: 86af********d1bc' \
--header 'OK-ACCESS-KEY: 37c541a1-****-****-****-10fe7a038418' \
--header 'OK-ACCESS-SIGN: leaV********3uw=' \
--header 'OK-ACCESS-PASSPHRASE: 1****6' \
--header 'OK-ACCESS-TIMESTAMP: 2023-10-18T12:21:41.274Z'
{
"code": "0",
"data": [
{
"addressType": "1"
"hitBlacklist":"true"
"tag":"HoneyPot"
}
],
"msg": "success"
}