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

# thorchain.defi_streaming_swap_details_events

> THORChain streaming swap progress — partial fill details for large swaps.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

## Table Description

The `thorchain.defi_streaming_swap_details_events` table event data for streaming swap details on THORChain. This table captures detailed information about streaming swaps including intervals, quantities, and success metrics.

## Column Descriptions

| **Column**                | **Type**       | **Description**                                           |
| ------------------------- | -------------- | --------------------------------------------------------- |
| **block\_time**           | timestamp      | Timestamp of when the block was created                   |
| **block\_date**           | date           | Date of when the block was created                        |
| **block\_month**          | timestamp      | Month of when the block was created                       |
| **block\_height**         | bigint         | Block height                                              |
| **tx\_id**                | varchar        | Transaction ID                                            |
| **event\_id**             | varchar        | Event identifier                                          |
| **interval**              | varchar        | Streaming swap interval                                   |
| **quantity**              | bigint         | Quantity in the streaming swap                            |
| **count**                 | bigint         | Count of swaps in the streaming                           |
| **last\_height**          | bigint         | Last block height                                         |
| **deposit\_asset**        | varchar        | Deposit asset identifier                                  |
| **deposit\_e8**           | bigint         | Deposit amount in e8 units                                |
| **in\_asset**             | varchar        | Input asset identifier                                    |
| **in\_e8**                | bigint         | Input amount in e8 units                                  |
| **out\_asset**            | varchar        | Output asset identifier                                   |
| **out\_e8**               | bigint         | Output amount in e8 units                                 |
| **failed\_swaps**         | array(varchar) | Array of failed swap information                          |
| **failed\_swap\_reasons** | array(varchar) | Array of reasons for failed swaps                         |
| **is\_successful**        | boolean        | Whether the streaming swap was successful                 |
| **failed\_swap\_count**   | bigint         | Number of failed swaps                                    |
| **trade\_direction**      | varchar        | Trade direction (sell\_rune, buy\_rune, asset\_to\_asset) |
| **inserted\_timestamp**   | timestamp      | Time when the record was inserted                         |
| **modified\_timestamp**   | timestamp      | Time when the record was last modified                    |

## Table Sample

<TableSample tableSchema="thorchain" tableName="defi_streaming_swap_details_events" />
