> ## 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_bond_actions

> THORChain node bond actions — bond and unbond operations.

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_bond_actions` table records of bond actions on THORChain. This table tracks bonding and unbonding actions for validators and includes asset amounts and USD values.

## Column Descriptions

| **Column**                  | **Type**      | **Description**                          |
| --------------------------- | ------------- | ---------------------------------------- |
| **fact\_bond\_actions\_id** | varchar       | Surrogate key for the bond action record |
| **block\_timestamp**        | timestamp     | Timestamp of when the block was created  |
| **dim\_block\_id**          | varchar       | Reference to the block dimension table   |
| **tx\_id**                  | varchar       | Transaction ID                           |
| **from\_address**           | varchar       | Source address                           |
| **to\_address**             | varchar       | Destination address                      |
| **asset**                   | varchar       | Asset identifier                         |
| **blockchain**              | varchar       | Source blockchain identifier             |
| **bond\_type**              | varchar       | Type of bond action                      |
| **asset\_amount**           | decimal(38,0) | Amount of asset                          |
| **asset\_usd**              | decimal(20,6) | USD value of asset amount                |
| **memo**                    | varchar       | Transaction memo                         |
| **\_TX\_TYPE**              | varchar       | Transaction type                         |
| **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_bond_actions" />
