> For the complete documentation index, see [llms.txt](https://docs.cryptum.io/english/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cryptum.io/english/community-edition/sdk-guides/queries/get-transaction-receipt-by-hash.md).

# Get transaction receipt by hash

#### `sdk.transaction.getTransactionReceiptByHash(opts)`

* `opts.hash` (string)(**required**) - transaction hash.
* `opts.protocol` (string)(**required**) - blockchain protocol.

```javascript
const tx = await sdk.transaction.getTransactionReceiptByHash({ hash: '<hash>', protocol: 'BSC' })
// Blockchain transaction receipt returned
```
