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

# lending.info

> DeFi lending market snapshots — supply rates, borrow rates, utilization, and total value locked by protocol and asset.

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>
  </>;

The `lending.info` table provides static metadata about lending protocols, including display names, flash loan support, and social handles.

## Table Schema

| Column           | Type      | Description                              |
| ---------------- | --------- | ---------------------------------------- |
| `project`        | `VARCHAR` | Lending protocol codename                |
| `name`           | `VARCHAR` | Lending protocol display name            |
| `has_flashloans` | `BOOLEAN` | Whether the protocol supports flashloans |
| `x_username`     | `VARCHAR` | Protocol's X (Twitter) username          |

## Table sample

<TableSample tableSchema="lending" tableName="info" />
