{
  "requestUUID": "f47d9353-d35b-437b-94ed-a0994794d688",
  "tenantUserId": "2020",
  "chainName": "TRON",
  "symbol": "USDT",
  "business": 0,
  "type": 4,
  "toAddress": "TGVJZLgz88XPYwkQECMRocSgHt极QT7VQZd",
  "newAddress": "TGVJZLgz88XPYwkQECMRocSgHtKQT7VQZd",
  "trackingId": null // In this callback type, trackingId is null
}
{
  "apiKey": "88c47568-8d24-4983-9b4c-y1ec8b939e9b",
  "data": "{\"type\":4,\"chainName\":\"TRON\",\"symbol\":\"USDT\",\"toAddress\":\"TGVJZLgz88XPYwkQECMRocSgHtKQT7VQZd\",\"requestUUID\":\"f47d9353-d35b-437b-94ed-a0994794d688\",\"tenantUserId\":\"2020\"}",
  "errCode": 0,
  "message": ""
}

NOTIFY_ADDRESS (type=4)

When a user’s deposit address is changed in WaaS, the system notifies the merchant of the address change through this callback. The merchant must immediately update the user’s deposit address in their own system to ensure that subsequent deposits use the latest valid address.

System Behavior Explanation: WaaS may change user deposit addresses in the following situations:

  • Security policy requirements (e.g., regular address rotation)
  • Technical architecture adjustments (e.g., migration to new address pools)
  • Risk management needs (e.g., old address marked as risky)

Request Parameters

The request sent by WaaS is an RSA-encrypted Base64 string. Merchants need to decrypt using their public key to obtain business parameters:

Address Change Request Parameters
object

Response Parameters

The data field in the response must return an RSA-encrypted Base64 string (encrypted using WaaS public key):

Address Change Response Parameters
object

{
  "requestUUID": "f47d9353-d35b-437b-94ed-a0994794d688",
  "tenantUserId": "2020",
  "chainName": "TRON",
  "symbol": "USDT",
  "business": 0,
  "type": 4,
  "toAddress": "TGVJZLgz88XPYwkQECMRocSgHt极QT7VQZd",
  "newAddress": "TGVJZLgz88XPYwkQECMRocSgHtKQT7VQZd",
  "trackingId": null // In this callback type, trackingId is null
}
{
  "apiKey": "88c47568-8d24-4983-9b4c-y1ec8b939e9b",
  "data": "{\"type\":4,\"chainName\":\"TRON\",\"symbol\":\"USDT\",\"toAddress\":\"TGVJZLgz88XPYwkQECMRocSgHtKQT7VQZd\",\"requestUUID\":\"f47d9353-d35b-437b-94ed-a0994794d688\",\"tenantUserId\":\"2020\"}",
  "errCode": 0,
  "message": ""
}