added

Bitcoin Mempool Notification

Create a New Bitcoin Notification with Mempool.

Update your existing Bitcoin Notification to cover Mempool Notifications.

We are excited to announce that you can now also get mempool notifications when you are monitoring an address on Bitcoin, all you would need to do is use thew new mempool parameter while creating notifications and set it to true and you will be receiving two webhooks then on a transaction, 1 when the transactions makes it to the mempool and one when its confirmed.

Here's how the two responses would look like :

When In Mempool

{  
  "address": "tb1qy0n8jelyelrjz4r73wfqzzwspcc9unlmezr25h",  
  "amount": "-0.00805381",  
  "asset": "BTC",  
  "blockNumber": null,  
  "txId": "e4260907354195213e2da172dc0fc190eba015ec5dc870cb384c7e70b9aab4ae",  
  "index": 0,  
  "type": "native",  
  "outType": null,  
  "reqSigs": null,  
  "mempool": true,  
  "subscriptionType": "ADDRESS_EVENT",  
  "chain": "bitcoin-testnet"  
}

When Confirmed (After 1 Confirmations)

{  
  "address": "tb1qy0n8jelyelrjz4r73wfqzzwspcc9unlmezr25h",  
  "amount": "-0.00805381",  
  "asset": "BTC",  
  "blockNumber": 2821936,  
  "txId": "e4260907354195213e2da172dc0fc190eba015ec5dc870cb384c7e70b9aab4ae",  
  "index": 0,  
  "type": "native",  
  "outType": null,  
  "reqSigs": null,  
  "subscriptionType": "ADDRESS_EVENT",  
  "chain": "bitcoin-testnet"  
}