Adding transaction hash/origin wallet

Adding txHash

After you have executed the blockchain value transfer, you need to add the blockchain transaction hash to the corresponding travel rule message that was created and sent by using txUpdate:

POST https://api.notabene.dev/tx/update

{
    "id": "{{txID}}",
    "txHash": "theTransactionHash"
}


Adding origin wallet

If you didn't know which wallet address the virtual assets would be sent from when the travel rule message was created, you can append it together with the txHash:

POST https://api.notabene.dev/tx/update

{  
    "id": "{{txID}}",  
    "txHash": "theTransactionHash",
    "origin": "theOriginWalletAddress"  
}