Validate Transaction
This method analyzes a transaction, checking to see if it will end up sending assets to a malicious address.
validateTransaction
Request Body
Name
Type
Description
{
summary: string,
isDangerousOperation: boolean, // Returns `true` if the operation is a transfer or approval
recommendedAction: "ALLOW" | "BLOCK",
addressDetails: {
name: string,
isMaliciousAddress: boolean,
isAssociatedWithProtocol: boolean,
tags: {
THEFT: boolean,
CYBERCRIME: boolean,
SANCTIONED: boolean,
BOT: boolean,
WASH_TRADER: boolean,
MIXER: boolean,
NO_DATA: boolean,
}
}
}Example response:
Last updated