> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Inscription Transfers

The `bitcoin.assets.inscription_transfers` table contain the transfer details (sender, recipient) of the inscription with the ID of the inscribed satoshis.

### Table Details

| Property            | Value                                                                                            |
| ------------------- | ------------------------------------------------------------------------------------------------ |
| Table Name          | `bitcoin.assets.inscription_transfers`                                                           |
| Table Status        | Production-Ready                                                                                 |
| Unique Key          | `block_timestamp::date`, `transaction_hash`, `inscription_id`                                    |
| Clustering Key(s)   | `block_timestamp::date`                                                                          |
| Search Optimization | `inscription_id`, `transaction_hash`, `from_utxo_id`, `to_utxo_id`, `from_address`, `to_address` |

<Frame>
  <img src="https://mintcdn.com/allium-e770e2b7/rnUMHb7oivWXnpD5/images/image-bitcoin-inscription.png?fit=max&auto=format&n=rnUMHb7oivWXnpD5&q=85&s=db85bdbb566410b319805a515fc72879" width="1740" height="1170" data-path="images/image-bitcoin-inscription.png" />
</Frame>

Get an overview of [Ordinals Activity on Bitcoin Network](https://app.hex.tech/fc6e427a-6bfb-40e5-9cc1-1808967c3c12/app/fd5def55-063a-433f-83f6-26d01f9e15f2/latest?selectedStaticCellId=cab379d4-1dbe-40ba-b1bf-9daf212a23d5) with inscription transfers.

### Table Columns

| Column Name        | Data Type         | Description                                                         |
| ------------------ | ----------------- | ------------------------------------------------------------------- |
| from\_address      | VARCHAR(16777216) | Address where the inscription is being transferred from.            |
| input\_index       | NUMBER(38,0)      | Index of the input which spent the UTXO containing the inscription. |
| from\_utxo\_id     | VARCHAR(16777216) | ID of the origin UTXO.                                              |
| from\_utxo\_offset | NUMBER(38,0)      | Offset of the sat in the origin UTXO.                               |
| to\_address        | VARCHAR(16777216) | Address where the inscription is being transferred to.              |
| output\_index      | NUMBER(38,0)      | Index of the output UTXO which receives the inscription.            |
| to\_utxo\_id       | VARCHAR(16777216) | ID of the destination UTXO.                                         |
| to\_utxo\_offset   | NUMBER(38,0)      | Offset of the sat in the destination UTXO.                          |
| inscription\_id    | VARCHAR(16777216) | ID of the inscription.                                              |
| transfer\_count    | NUMBER(38,0)      | Transfer count of the inscription. 0 for the mint transaction       |
| transaction\_hash  | VARCHAR(16777216) | Unique transaction hash of the transfer.                            |
| block\_hash        | VARCHAR(16777216) | Block hash of the the inscription transfer.                         |
| block\_number      | NUMBER(38,0)      | Block number of the inscription transfer.                           |
| block\_timestamp   | TIMESTAMP\_NTZ(9) | Block timestamp of the transfer.                                    |
