fixed

Solana Notifications Missing Fee Webhook

We have released a fix for our Solana notifications, where for Address Event type notifications you will receive two notifications.

Example Notification:

{
  "_id": {
    "$oid": "6666d9529abae39d16877ced"
  },
  "type": "ADDRESS_EVENT",
  "attr": {
    "chain": "SOL",
    "url": "https://webhook.site/57577da2-5961-4799-9959-4943bfc2b9d6",
    "address": "CUAkqR6WKhvGaqf4hJYeUo2YhEsGL46RZGg7BFRJx6vP"
  },
  "scheme": "665d852711c8849351363200",
  "location": "DE-HE"
}

You will receive the following webhooks:

  1. One for the amount of the transaction
{  
  "address": "CUAkqR6WKhvGaqf4hJYeUo2YhEsGL46RZGg7BFRJx6vP",  
  "type": "native",  
  "txId": "f1nZdcUnB2VRrmJ6u4wZN79APYdPxktQdEGj49fiR6LV6w4HA4puYyqQCYWWHvFLNLWos75KEqRi7yMZ8R6bohX",  
  "blockNumber": 303689174,  
  "asset": "SOL",  
  "amount": "-0.0001",  
  "subscriptionType": "ADDRESS_EVENT",  
  "chain": "solana-devnet"  
}
  1. Another for the fee of the transaction.
{  
     "address": "CUAkqR6WKhvGaqf4hJYeUo2YhEsGL46RZGg7BFRJx6vP",  
     "type": "fee",  
     "txId": "f1nZdcUnB2VRrmJ6u4wZN79APYdPxktQdEGj49fiR6LV6w4HA4puYyqQCYWWHvFLNLWos75KEqRi7yMZ8R6bohX",  
     "blockNumber": 303689174,  
     "asset": "SOL",  
     "amount": "-0.000005",  
     "subscriptionType": "ADDRESS_EVENT",  
     "chain": "solana-devnet"  
}