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

    -- -----------------------------------------------------------------
    -- 🚨 WARNING 🚨
    -- To run these examples you must associate your CoinGecko API Key
    -- with your Flipside Account here:
    -- https://flipsidecrypto.xyz/livequery/coingecko

    -- ======================================================================
    --
    -- ⚡️ CoinGecko Functions
    -- schema: `coingecko`
    -- function docs: https://www.coingecko.com/en/api/documentation
    --
    -- ======================================================================

    --
    -- #️⃣ coingecko.get('url', 'query args')
    -- Issue a GET request to a CoinGecko Endpoint
    --
    -- examples:
    --
    SELECT
    coingecko.get('/api/v3/coins/list', {}) as resp

    --
    SELECT coingecko.get('/api/v3/simple/price', {
    'ids': '0x',
    'vs_currencies': 'btc,usd,eth'
    }) as resp



    Run a query to Download Data