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

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

    -- ======================================================================
    --
    -- ⚡️ CoinMarketCap Functions
    -- schema: `cmc`
    -- function docs: https://coinmarketcap.com/api/documentation/v1/
    --
    -- ======================================================================

    --
    -- #️⃣ cmc.get('url', 'query args')
    -- Issue a GET request to a CoinMarketCap Endpoint
    --
    -- example:
    SELECT cmc.get('/v2/cryptocurrency/ohlcv/historical', {
    'interval': 'hourly',
    'time_period': 'hourly',
    'time_start': 1691524740,
    'time_end': 1691528400,
    'id': '15478,15479'
    }) as resp


    --
    -- #️⃣ cmc.post('url', 'body')
    -- Issue a POST request to CoinMarketCap Endpoint
    Run a query to Download Data