Responce Detail


FeildDescription
is_under_attackWhether the transaction (defined by from and to) is recognized as a victim transaction caused by a Dust/Shadow phishing attack. Value is a string. Example: "1" means yes.
attack_hashList of original phishing attack transactions. When is_under_attack indicates “yes”, this array contains the original Dust/Shadow phishing transactions related to the current one.
attack_hash[].chain_idThe chain_id of the chain where the original phishing transaction happened. "1" for ETH, "56" for BSC, "8453" for BASE, "137" for Polygon.
attack_hash[].tx_hashTransaction hash of the original phishing attack. Can be used to look up the transaction on chain explorers.

Example

{
    "code":1,
    "message":"ok",
    "result":{
        "is_under_attack":"1",
        "attack_hash":[
            {
                "chain_id":"56",
                "tx_hash":"0x0b41a22f2b6dfd6b31db817ad767e765369f3e40b1f7a8edca295d2f1513010a"
                },
            {
                "chain_id":"56",
                "tx_hash":"0x034282dd0190a350bc30f07ae5387067a7acc31c113681760fcfb30aafb949fb"
                }
        ]
    }
}