flipsidecrypto⚡️ LQ / DefiLlama LiveQuery Function Guide
    -- DefiLlama 🤝 Flipside LiveQuery Function Guide
    -------------------------------------------------------------------------
    -- The DefiLlama LiveQuery integration enables you to interact with
    -- any DefiLlama API endpoint directly in SQL.


    -- ======================================================================
    --
    -- ⚡️ DefiLlama Functions
    -- schema: `defillama`
    -- function docs: https://defillama.com/docs/api
    --
    -- ======================================================================

    --
    -- #️⃣ defillama.get('url', 'query args')
    -- Issue a GET request to a DefiLlama Endpoint
    --
    -- examples:
    --
    SELECT defillama.get('/protocols', {}) as resp

    --
    -- #️⃣ defillama.post('url', 'body')
    -- Issue a POST request to DefiLlama Endpoint
    --
    -- example
    SELECT
    defillama.post('/some/path/here', {
    'foo': 'bar'
    }) as resp


    Run a query to Download Data