πNotify URL (Webhook)
Save a project webhook url to receive subwallet deposit callback/notifications.



π Sample notification POSTto your webhook url
POSTto your webhook url
Last updated
Save a project webhook url to receive subwallet deposit callback/notifications.



POSTto your webhook url
Last updated
{
"type": "DEPOSIT",
"network": "TRON",
"status": "SUCCESS",
"hash": "cd2df87daa2001c678f5be970851278987a45132f165f62e5f1e1987c43d5cf7",
"fromAddress": "TDmarSrhZg7LaUaQyzez7UA2EZrCLWXEjw",
"toAddress": "TTcVb5oLA7UDGCDvTs7DtQo9ktJWgYPCkC",
"contractAddress": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"value": "787.41",
"assetName": "Tether USD",
"assetSymbol": "USDT",
"networkFee": "1",
"platformFee": "3.93705",
"timestamp": 1618564124
}function isValidSignature(request) {
const secretKey = 'Secret Key provided by Multichain on the Project (View Key) list popup';
const headers = request.headers;
const signature = headers['multichain-api-key']; // Lowercase for NodeJS
const body = request.body;
const hmac = crypto.createHmac('sha256', secretKey) // Create a HMAC SHA256 hash using the auth token
hmac.update(body, 'utf8') // Update the token hash with the request body using utf8
const digest = hmac.digest('hex');
return (signature === digest); // If signature equals your computed hash, return true
}import hmac
import hashlib
import json
def isValidSignature(request):
secretKey = '<your Secret Key goes here>';
headers = request['headers'];
signature = headers['multichain-api-key'];
body = request['body'];
string_body = json.dumps(body, separators=(',', ':'))
digest = hmac.new(
bytes(secretKey, 'utf-8'),
msg=bytes(string_body, 'utf-8'),
digestmod=hashlib.sha256
).hexdigest()
return (signature == digest);