diff --git a/server.py b/server.py index f2a15ee..4a64d93 100644 --- a/server.py +++ b/server.py @@ -95,7 +95,13 @@ def wellknown(path): def index(): tokenSupply = getTokenSupplyString() tokenValue = getTokenPrice() - return render_template("index.html", value=tokenValue, supply=tokenSupply) + tokens = getTokens() + solValue = getSolValue() + + pie_chart_data = [(token['symbol'].upper(), token['value'], f"{token['name']}: ${"{:.2f}".format(token['value'])}") for token in tokens] + pie_chart_data.append(("SOL", solValue, f"Solana: ${"{:.2f}".format(solValue)}")) + + return render_template("index.html", value=tokenValue, supply=tokenSupply, pie_chart=pie_chart_data) @app.route("/") @@ -149,28 +155,42 @@ def get_token_price(token_address:str): return 0 -token_supply_str_cache = TTLCache(maxsize=100, ttl=3600) +token_supply_str_cache = TTLCache(maxsize=1, ttl=3600) @cached(token_supply_str_cache) def getTokenSupplyString() -> str: supply = solana_client.get_token_supply(token) return supply.value.ui_amount_string -token_supply_cache = TTLCache(maxsize=100, ttl=3600) +token_supply_cache = TTLCache(maxsize=1, ttl=3600) @cached(token_supply_cache) def getTokenSupply() -> int: supply = solana_client.get_token_supply(token) return supply.value.ui_amount -vault_balance_cache = TTLCache(maxsize=100, ttl=3600) +sol_value_cache = TTLCache(maxsize=1, ttl=3600) +@cached(sol_value_cache) +def getSolValue() -> int: + SOLbalance = solana_client.get_balance(vault).value / 1000000000 + SOLPrice = get_coin_price("solana") + return SOLbalance * SOLPrice + +vault_balance_cache = TTLCache(maxsize=1, ttl=3600) @cached(vault_balance_cache) def getVaultBalance() -> int: # Get balance of vault - # SOLbalance = solana_client.get_balance(vault).value / 1000000000 - # SOLPrice = get_coin_price("solana") - # Ignore SOL for now as the vault will be handling tokens - SOLbalance = 0 - SOLPrice = 0 + SOLbalance = getSolValue() + tokens = getTokens() + tokenValue = 0 + for token in tokens: + tokenValue += token["value"] + print(tokens) + return SOLbalance + tokenValue + + +get_tokens_cache = TTLCache(maxsize=1, ttl=3600) +@cached(get_tokens_cache) +def getTokens(): programID = Pubkey.from_string("TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA") tokenAccounts = solana_client.get_token_accounts_by_owner( @@ -181,8 +201,6 @@ def getVaultBalance() -> int: tokenAccounts = tokenAccounts.value tokens = [] - tokenValue = 0 - for tokenAccount in tokenAccounts: pubkey = tokenAccount.pubkey account = solana_client.get_token_account_balance(pubkey) @@ -196,11 +214,27 @@ def getVaultBalance() -> int: token["price"] = get_token_price(token["mint"]) token["value"] = token["price"] * token["balance"] - tokenValue += token["value"] + + data = getTokenData(str(mint)) + token["name"] = data["name"] + token["symbol"] = data["symbol"] tokens.append(token) - print(tokens) - return (SOLbalance * SOLPrice) + tokenValue + return tokens + +def getTokenData(tokenMint): + if not os.path.exists("tokens"): + os.makedirs("tokens") + + if os.path.exists(f"tokens/{tokenMint}.json"): + with open(f"tokens/{tokenMint}.json") as f: + data = json.load(f) + return data + else: + data = coingecko_client.get_coin_info_from_contract_address_by_id('solana', tokenMint) + with open(f"tokens/{tokenMint}.json", "w") as f: + json.dump(data, f) + return data def getTokenPrice(): diff --git a/stWDBRN.bsdesign b/stWDBRN.bsdesign index f8fde84..efcdd3c 100644 Binary files a/stWDBRN.bsdesign and b/stWDBRN.bsdesign differ diff --git a/templates/index.html b/templates/index.html index a833dde..ab156eb 100644 --- a/templates/index.html +++ b/templates/index.html @@ -45,6 +45,52 @@
+
+
+

Vault Balances

+
+
+
@@ -54,7 +100,7 @@

1. Buy tokens

-

To get started buy stWDBRN tokens at the current price to buy a percent of the vault value. The buy in value is then invested in various projects in order to increase the token's value.

Buy +

To get started buy stWDBRN tokens at the current price to buy a percent of the vault value. The buy in value is then invested in various projects in order to increase the token's value.

Send USDC or SOL to vault.woodburn.sol or NWywvhcqdkJsm1s9VVviPm9UfyDtyCW9t8kDb24PDPN and send me a message to mint stWDBRN

Buy Tokens
@@ -84,7 +130,7 @@

3. Sell your tokens

-

When you want to cash out  just sell your tokens back at the current token price.

+

When you want to cash out  just sell your tokens back to us at the current token price.

Sell Tokens
@@ -96,6 +142,7 @@ + \ No newline at end of file diff --git a/tokens/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4.json b/tokens/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4.json new file mode 100644 index 0000000..aa213fb --- /dev/null +++ b/tokens/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4.json @@ -0,0 +1 @@ +{"id": "jupiter-perpetuals-liquidity-provider-token", "symbol": "jlp", "name": "Jupiter Perpetuals Liquidity Provider Token", "web_slug": "jupiter-perpetuals-liquidity-provider-token", "asset_platform_id": "solana", "platforms": {"solana": "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4"}, "detail_platforms": {"solana": {"decimal_place": 6, "contract_address": "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4"}}, "block_time_in_minutes": 0, "hashing_algorithm": null, "categories": ["Solana Ecosystem"], "preview_listing": false, "public_notice": null, "additional_notices": [], "localization": {"en": "Jupiter Perpetuals Liquidity Provider Token", "de": "", "es": "", "fr": "", "it": "", "pl": "", "ro": "", "hu": "", "nl": "", "pt": "", "sv": "", "vi": "", "tr": "", "ru": "", "ja": "", "zh": "", "zh-tw": "", "ko": "", "ar": "", "th": "", "id": "", "cs": "", "da": "", "el": "", "hi": "", "no": "", "sk": "", "uk": "", "he": "", "fi": "", "bg": "", "hr": "", "lt": "", "sl": ""}, "description": {"en": "", "de": "", "es": "", "fr": "", "it": "", "pl": "", "ro": "", "hu": "", "nl": "", "pt": "", "sv": "", "vi": "", "tr": "", "ru": "", "ja": "", "zh": "", "zh-tw": "", "ko": "", "ar": "", "th": "", "id": "", "cs": "", "da": "", "el": "", "hi": "", "no": "", "sk": "", "uk": "", "he": "", "fi": "", "bg": "", "hr": "", "lt": "", "sl": ""}, "links": {"homepage": ["https://jup.ag/", "", ""], "whitepaper": "https://docs.qubic.world/", "blockchain_site": ["https://solscan.io/token/27g8mtk7vttcchkpasjsddkwwyfoqt6ggeukidvjidd4", "https://platform.arkhamintelligence.com/explorer/token/jupiter-perpetuals-liquidity-provider-token", null, null, null, "", "", "", "", ""], "official_forum_url": ["", "", ""], "chat_url": ["https://discord.com/invite/jup", "https://station.jup.ag/blog/", ""], "announcement_url": ["", ""], "twitter_screen_name": "JupiterExchange", "facebook_username": "", "bitcointalk_thread_identifier": null, "telegram_channel_identifier": "", "subreddit_url": "https://www.reddit.com", "repos_url": {"github": ["https://github.com/qubic-li"], "bitbucket": []}}, "image": {"thumb": "https://coin-images.coingecko.com/coins/images/33094/thumb/jlp.png?1700631386", "small": "https://coin-images.coingecko.com/coins/images/33094/small/jlp.png?1700631386", "large": "https://coin-images.coingecko.com/coins/images/33094/large/jlp.png?1700631386"}, "country_origin": "", "genesis_date": null, "contract_address": "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", "sentiment_votes_up_percentage": 100.0, "sentiment_votes_down_percentage": 0.0, "watchlist_portfolio_users": 6868, "market_cap_rank": null, "market_data": {"current_price": {"aed": 15.26, "ars": 4204.46, "aud": 6.47, "bch": 0.00718906, "bdt": 497.42, "bhd": 1.57, "bmd": 4.16, "bnb": 0.00541288, "brl": 25.11, "btc": 4.299e-05, "cad": 5.85, "chf": 3.69, "clp": 4043.56, "cny": 30.21, "czk": 99.42, "dkk": 29.51, "dot": 0.41330792, "eos": 2.916612, "eth": 0.00112045, "eur": 3.96, "gbp": 3.28, "gel": 11.93, "hkd": 32.35, "huf": 1641.56, "idr": 66179, "ils": 15.02, "inr": 352.03, "jpy": 625.09, "krw": 5871.95, "kwd": 1.28, "lkr": 1209.49, "ltc": 0.03167895, "mmk": 8718.81, "mxn": 84.61, "myr": 18.48, "ngn": 6884.28, "nok": 45.92, "nzd": 7.11, "php": 241.96, "pkr": 1156.51, "pln": 17.01, "rub": 440.51, "sar": 15.62, "sek": 45.79, "sgd": 5.59, "thb": 142.64, "try": 144.45, "twd": 134.75, "uah": 173.78, "usd": 4.16, "vef": 0.416117, "vnd": 105584, "xag": 0.134596, "xau": 0.00157491, "xdr": 3.17, "xlm": 8.074474, "xrp": 1.571573, "yfi": 0.00044338, "zar": 75.49, "bits": 42.99, "link": 0.17055685, "sats": 4298.84}, "total_value_locked": null, "mcap_to_tvl_ratio": null, "fdv_to_tvl_ratio": null, "roi": null, "ath": {"aed": 15.29, "ars": 4212.08, "aud": 6.49, "bch": 0.010772, "bdt": 498.31, "bhd": 1.57, "bmd": 4.16, "bnb": 0.00691425, "brl": 25.23, "btc": 5.642e-05, "cad": 5.86, "chf": 3.7, "clp": 4085.93, "cny": 30.3, "czk": 100.79, "dkk": 29.65, "dot": 0.95388721, "eos": 8.645379, "eth": 0.00146922, "eur": 3.97, "gbp": 3.31, "gel": 11.95, "hkd": 32.41, "huf": 1645.04, "idr": 66418, "ils": 15.38, "inr": 352.59, "jpy": 640.92, "krw": 5955.27, "kwd": 1.28, "lkr": 1211.65, "ltc": 0.0550782, "mmk": 10599.43, "mxn": 85.55, "myr": 18.59, "ngn": 7010.37, "nok": 46.19, "nzd": 7.13, "php": 244.07, "pkr": 1158.58, "pln": 17.24, "rub": 469.43, "sar": 15.64, "sek": 45.94, "sgd": 5.6, "thb": 143.56, "try": 144.71, "twd": 135.38, "uah": 174.09, "usd": 4.16, "vef": 0.41686, "vnd": 105767, "xag": 0.138648, "xau": 0.00158725, "xdr": 3.18, "xlm": 39.162836, "xrp": 7.087751, "yfi": 0.00078832, "zar": 75.56, "bits": 56.42, "link": 0.34372459, "sats": 5642.22}, "ath_change_percentage": {"aed": -0.30347, "ars": -0.29547, "aud": -0.46752, "bch": -33.34411, "bdt": -0.30212, "bhd": -0.31719, "bmd": -0.30212, "bnb": -21.52362, "brl": -0.57929, "btc": -23.90225, "cad": -0.28801, "chf": -0.52029, "clp": -1.15966, "cny": -0.44095, "czk": -1.46219, "dkk": -0.62772, "dot": -56.75581, "eos": -66.46076, "eth": -23.76632, "eur": -0.6062, "gbp": -1.01059, "gel": -0.30212, "hkd": -0.29648, "huf": -0.34947, "idr": -0.49728, "ils": -2.36649, "inr": -0.29046, "jpy": -2.58115, "krw": -1.54735, "kwd": -0.29237, "lkr": -0.30212, "ltc": -42.6939, "mmk": -17.8448, "mxn": -1.25805, "myr": -0.70388, "ngn": -1.92058, "nok": -0.68811, "nzd": -0.43127, "php": -1.00376, "pkr": -0.30212, "pln": -1.48551, "rub": -6.38674, "sar": -0.29341, "sek": -0.45616, "sgd": -0.35362, "thb": -0.79261, "try": -0.29936, "twd": -0.59756, "uah": -0.30212, "usd": -0.30212, "vef": -0.30212, "vnd": -0.29756, "xag": -3.06404, "xau": -0.89771, "xdr": -0.47935, "xlm": -79.44654, "xrp": -77.88254, "yfi": -43.91896, "zar": -0.20885, "bits": -23.90225, "link": -50.49207, "sats": -23.90225}, "ath_date": {"aed": "2024-12-04T05:30:13.056Z", "ars": "2024-12-04T05:30:13.056Z", "aud": "2024-12-04T03:49:18.833Z", "bch": "2024-11-04T21:55:37.789Z", "bdt": "2024-12-04T05:30:13.056Z", "bhd": "2024-12-04T05:30:13.056Z", "bmd": "2024-12-04T05:30:13.056Z", "bnb": "2023-12-09T00:00:00.000Z", "brl": "2024-12-02T16:08:59.969Z", "btc": "2024-09-08T00:00:00.000Z", "cad": "2024-12-04T03:49:18.833Z", "chf": "2024-11-23T14:44:52.320Z", "clp": "2024-11-23T14:44:52.320Z", "cny": "2024-12-04T03:49:18.833Z", "czk": "2024-11-22T09:42:21.488Z", "dkk": "2024-11-23T14:44:52.320Z", "dot": "2024-11-03T14:31:22.852Z", "eos": "2024-11-04T21:55:37.789Z", "eth": "2024-11-04T21:55:37.789Z", "eur": "2024-11-23T14:44:52.320Z", "gbp": "2024-11-23T14:44:52.320Z", "gel": "2024-12-04T05:30:13.056Z", "hkd": "2024-12-04T05:30:13.056Z", "huf": "2024-12-04T03:49:18.833Z", "idr": "2024-12-04T03:49:18.833Z", "ils": "2024-11-22T09:42:21.488Z", "inr": "2024-12-04T08:14:45.045Z", "jpy": "2024-11-23T14:44:52.320Z", "krw": "2024-12-03T15:23:57.341Z", "kwd": "2024-12-04T08:14:45.045Z", "lkr": "2024-12-04T05:30:13.056Z", "ltc": "2024-08-08T00:00:00.000Z", "mmk": "2024-07-22T00:00:00.000Z", "mxn": "2024-11-27T15:35:52.924Z", "myr": "2024-12-04T03:49:18.833Z", "ngn": "2024-11-23T14:44:52.320Z", "nok": "2024-12-02T16:08:59.969Z", "nzd": "2024-12-04T03:30:53.410Z", "php": "2024-11-23T14:44:52.320Z", "pkr": "2024-12-04T05:30:13.056Z", "pln": "2024-11-22T09:42:21.488Z", "rub": "2024-11-27T13:30:51.542Z", "sar": "2024-12-04T05:30:13.056Z", "sek": "2024-11-22T09:42:21.488Z", "sgd": "2024-12-04T03:49:18.833Z", "thb": "2024-11-22T04:34:58.478Z", "try": "2024-12-04T08:14:45.045Z", "twd": "2024-12-04T01:20:06.549Z", "uah": "2024-12-04T05:30:13.056Z", "usd": "2024-12-04T05:30:13.056Z", "vef": "2024-12-04T05:30:13.056Z", "vnd": "2024-12-04T08:14:45.045Z", "xag": "2024-11-28T01:49:31.955Z", "xau": "2024-11-14T10:04:34.273Z", "xdr": "2024-12-02T02:15:26.652Z", "xlm": "2024-11-03T18:50:42.882Z", "xrp": "2024-11-03T19:00:20.163Z", "yfi": "2024-11-03T13:56:00.962Z", "zar": "2024-12-04T08:14:45.045Z", "bits": "2024-09-08T00:00:00.000Z", "link": "2024-11-04T21:55:37.789Z", "sats": "2024-09-08T00:00:00.000Z"}, "atl": {"aed": 0.53927, "ars": 52.43, "aud": 0.223661, "bch": 0.0006508, "bdt": 16.21, "bhd": 0.055348, "bmd": 0.146839, "bnb": 0.00062484, "brl": 0.720114, "btc": 3.93e-06, "cad": 0.201162, "chf": 0.129744, "clp": 128.25, "cny": 1.043, "czk": 3.28, "dkk": 1.004, "dot": 0.02841089, "eos": 0.21721657, "eth": 7.098e-05, "eur": 0.134617, "gbp": 0.11707, "gel": 3.93, "hkd": 1.14, "huf": 51.09, "idr": 2285.82, "ils": 0.550183, "inr": 12.24, "jpy": 21.92, "krw": 191.55, "kwd": 0.0452664, "lkr": 48.33, "ltc": 0.00211186, "mmk": 308.73, "mxn": 2.52, "myr": 0.688382, "ngn": 118.26, "nok": 1.58, "nzd": 0.242432, "php": 8.13, "pkr": 41.46, "pln": 0.588782, "rub": 13.01, "sar": 0.550729, "sek": 1.54, "sgd": 0.196848, "thb": 5.2, "try": 4.25, "twd": 4.64, "uah": 5.29, "usd": 0.146839, "vef": 0.014703, "vnd": 3564.06, "xag": 0.00619371, "xau": 7.366e-05, "xdr": 0.110435, "xlm": 1.254089, "xrp": 0.23685542, "yfi": 1.691e-05, "zar": 2.76, "bits": 3.93, "link": 0.01021436, "sats": 392.65}, "atl_change_percentage": {"aed": 2726.9639, "ars": 7910.75427, "aud": 2786.98233, "bch": 1003.29076, "bdt": 2964.9884, "bhd": 2726.83927, "bmd": 2726.63679, "bnb": 768.38941, "brl": 3382.90576, "btc": 993.48786, "cad": 2803.93271, "chf": 2737.23856, "clp": 3048.87009, "cny": 2793.75947, "czk": 2926.33298, "dkk": 2836.002, "dot": 1351.91073, "eos": 1234.8865, "eth": 1478.02341, "eur": 2834.87201, "gbp": 2694.7282, "gel": 202.90836, "hkd": 2722.33964, "huf": 3108.62866, "idr": 2791.22255, "ils": 2628.90658, "inr": 2772.10275, "jpy": 2748.80672, "krw": 2960.95549, "kwd": 2719.7965, "lkr": 2399.38481, "ltc": 1394.56987, "mmk": 2720.57994, "mxn": 3249.18052, "myr": 2581.92843, "ngn": 5714.16193, "nok": 2801.75804, "nzd": 2826.5328, "php": 2870.2691, "pkr": 2686.14273, "pln": 2785.09539, "rub": 3277.62625, "sar": 2732.02846, "sek": 2867.7771, "sgd": 2736.64388, "thb": 2639.37841, "try": 3297.9252, "twd": 2798.69858, "uah": 3179.17182, "usd": 2726.63679, "vef": 2726.63679, "vnd": 2858.77634, "xag": 2069.94559, "xau": 2035.34557, "xdr": 2763.33792, "xlm": 541.84584, "xrp": 561.85134, "yfi": 2514.00835, "zar": 2629.68428, "bits": 993.48786, "link": 1565.99679, "sats": 993.48786}, "atl_date": {"aed": "2023-11-24T05:55:06.706Z", "ars": "2023-11-24T05:55:06.706Z", "aud": "2023-11-24T05:55:06.706Z", "bch": "2023-11-24T05:55:06.706Z", "bdt": "2023-11-24T05:55:06.706Z", "bhd": "2023-11-24T05:55:06.706Z", "bmd": "2023-11-24T05:55:06.706Z", "bnb": "2023-11-24T05:55:06.706Z", "brl": "2023-11-24T05:55:06.706Z", "btc": "2023-11-24T05:55:06.706Z", "cad": "2023-11-24T05:55:06.706Z", "chf": "2023-11-24T05:55:06.706Z", "clp": "2023-11-24T05:55:06.706Z", "cny": "2023-11-24T05:55:06.706Z", "czk": "2023-11-24T05:55:06.706Z", "dkk": "2023-11-24T05:55:06.706Z", "dot": "2023-11-24T05:55:06.706Z", "eos": "2023-11-24T05:55:06.706Z", "eth": "2023-11-24T05:55:06.706Z", "eur": "2023-11-24T05:55:06.706Z", "gbp": "2023-11-24T05:55:06.706Z", "gel": "2023-11-28T00:00:00.000Z", "hkd": "2023-11-24T05:55:06.706Z", "huf": "2023-11-24T05:55:06.706Z", "idr": "2023-11-24T05:55:06.706Z", "ils": "2023-11-24T05:55:06.706Z", "inr": "2023-11-24T05:55:06.706Z", "jpy": "2023-11-24T05:55:06.706Z", "krw": "2023-11-24T01:14:05.937Z", "kwd": "2023-11-24T05:55:06.706Z", "lkr": "2023-11-24T05:55:06.706Z", "ltc": "2023-11-24T05:55:06.706Z", "mmk": "2023-11-24T05:55:06.706Z", "mxn": "2023-11-24T05:55:06.706Z", "myr": "2023-11-24T05:55:06.706Z", "ngn": "2023-11-24T05:55:06.706Z", "nok": "2023-11-24T05:55:06.706Z", "nzd": "2023-11-24T05:55:06.706Z", "php": "2023-11-24T05:55:06.706Z", "pkr": "2023-11-24T05:55:06.706Z", "pln": "2023-11-24T05:55:06.706Z", "rub": "2023-11-24T05:55:06.706Z", "sar": "2023-11-24T05:55:06.706Z", "sek": "2023-11-24T05:55:06.706Z", "sgd": "2023-11-24T05:55:06.706Z", "thb": "2023-11-24T05:55:06.706Z", "try": "2023-11-24T05:55:06.706Z", "twd": "2023-11-24T05:55:06.706Z", "uah": "2023-11-24T05:55:06.706Z", "usd": "2023-11-24T05:55:06.706Z", "vef": "2023-11-24T05:55:06.706Z", "vnd": "2023-11-24T05:55:06.706Z", "xag": "2023-11-24T05:55:06.706Z", "xau": "2023-11-24T05:55:06.706Z", "xdr": "2023-11-24T05:55:06.706Z", "xlm": "2023-11-24T01:14:05.937Z", "xrp": "2023-11-24T05:55:06.706Z", "yfi": "2023-11-24T05:55:06.706Z", "zar": "2023-11-24T05:55:06.706Z", "bits": "2023-11-24T05:55:06.706Z", "link": "2023-11-24T05:55:06.706Z", "sats": "2023-11-24T05:55:06.706Z"}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "gel": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "market_cap_rank": null, "fully_diluted_valuation": {"aed": 5048521276, "ars": 1390618192231, "aud": 2138555509, "bch": 2377771, "bdt": 164520396806, "bhd": 518129933, "bmd": 1374514022, "bnb": 1790301, "brl": 8303851559, "btc": 14218, "cad": 1933394172, "chf": 1219270910, "clp": 1337402143120, "cny": 9990930070, "czk": 32882842570, "dkk": 9759662587, "dot": 136700888, "eos": 964664402, "eth": 370587, "eur": 1308625318, "gbp": 1084015981, "gel": 3944855242, "hkd": 10699560773, "huf": 542944400307, "idr": 21888541791187, "ils": 4969437237, "inr": 116434894470, "jpy": 206747709839, "krw": 1942137523003, "kwd": 422698799, "lkr": 400035704637, "ltc": 10477758, "mmk": 2883730417539, "mxn": 27984449839, "myr": 6113838369, "ngn": 2276964947797, "nok": 15188795043, "nzd": 2350219673, "php": 80028329886, "pkr": 382514073400, "pln": 5626123682, "rub": 145696376422, "sar": 5165033332, "sek": 15144631908, "sgd": 1849210686, "thb": 47176756135, "try": 47777558963, "twd": 44567239891, "uah": 57478384104, "usd": 1374514022, "vef": 137630089, "vnd": 34921598334077, "xag": 44517238, "xau": 520900, "xdr": 1047163886, "xlm": 2670618622, "xrp": 519795194, "yfi": 146647, "zar": 24967439669, "bits": 14218327350, "link": 56411385, "sats": 1421832735032}, "market_cap_fdv_ratio": null, "total_volume": {"aed": 738320112, "ars": 203370714467, "aud": 312752677, "bch": 347737, "bdt": 24060256676, "bhd": 75773821, "bmd": 201015563, "bnb": 261822, "brl": 1214395320, "btc": 2079, "cad": 282748893, "chf": 178312061, "clp": 195588142666, "cny": 1461121822, "czk": 4808945564, "dkk": 1427300149, "dot": 19991797, "eos": 141077177, "eth": 54196, "eur": 191379681, "gbp": 158531728, "gel": 576914665, "hkd": 1564755395, "huf": 79402808926, "idr": 3201085968513, "ils": 726754480, "inr": 17028000791, "jpy": 30235782689, "krw": 284027562599, "kwd": 61817512, "lkr": 58503151705, "ltc": 1532318, "mmk": 421730650887, "mxn": 4092580975, "myr": 894117224, "ngn": 332994340816, "nok": 2221282676, "nzd": 343707465, "php": 11703729117, "pkr": 55940703808, "pln": 822791474, "rub": 21307341105, "sar": 755359397, "sek": 2214824046, "sgd": 270437494, "thb": 6899356455, "try": 6987220760, "twd": 6517728208, "uah": 8405916237, "usd": 201015563, "vef": 20127688, "vnd": 5107103044674, "xag": 6510416, "xau": 76179, "xdr": 153142299, "xlm": 390564154, "xrp": 76017357, "yfi": 21446, "zar": 3651358851, "bits": 2079356798, "link": 8249873, "sats": 207935679823}, "high_24h": {"aed": 15.29, "ars": 4212.08, "aud": 6.49, "bch": 0.00783942, "bdt": 498.31, "bhd": 1.57, "bmd": 4.16, "bnb": 0.00652645, "brl": 25.17, "btc": 4.383e-05, "cad": 5.86, "chf": 3.69, "clp": 4050.78, "cny": 30.3, "czk": 99.78, "dkk": 29.58, "dot": 0.4389577, "eos": 3.858607, "eth": 0.00116537, "eur": 3.97, "gbp": 3.29, "gel": 11.95, "hkd": 32.41, "huf": 1645.04, "idr": 66418, "ils": 15.09, "inr": 352.59, "jpy": 626.49, "krw": 5955.27, "kwd": 1.28, "lkr": 1211.65, "ltc": 0.03302581, "mmk": 8734.37, "mxn": 84.71, "myr": 18.59, "ngn": 6912.97, "nok": 46.16, "nzd": 7.13, "php": 243.03, "pkr": 1158.58, "pln": 17.03, "rub": 442.66, "sar": 15.64, "sek": 45.92, "sgd": 5.6, "thb": 143.0, "try": 144.71, "twd": 135.38, "uah": 174.09, "usd": 4.16, "vef": 0.41686, "vnd": 105767, "xag": 0.134544, "xau": 0.00157636, "xdr": 3.17, "xlm": 8.242684, "xrp": 1.701586, "yfi": 0.00047465, "zar": 75.56, "bits": 43.83, "link": 0.17752241, "sats": 4382.99}, "low_24h": {"aed": 15.01, "ars": 4136.76, "aud": 6.3, "bch": 0.00701384, "bdt": 488.72, "bhd": 1.54, "bmd": 4.09, "bnb": 0.00538198, "brl": 24.82, "btc": 4.292e-05, "cad": 5.74, "chf": 3.61, "clp": 3986.91, "cny": 29.77, "czk": 97.96, "dkk": 28.96, "dot": 0.40980583, "eos": 2.73789, "eth": 0.00111703, "eur": 3.88, "gbp": 3.23, "gel": 11.63, "hkd": 31.81, "huf": 1611.57, "idr": 65121, "ils": 14.83, "inr": 346.14, "jpy": 608.36, "krw": 5774.06, "kwd": 1.26, "lkr": 1188.28, "ltc": 0.03079688, "mmk": 8574.35, "mxn": 83.22, "myr": 18.27, "ngn": 6766.87, "nok": 45.14, "nzd": 6.94, "php": 239.3, "pkr": 1136.3, "pln": 16.69, "rub": 431.85, "sar": 15.36, "sek": 44.91, "sgd": 5.49, "thb": 140.46, "try": 142.02, "twd": 133.16, "uah": 170.76, "usd": 4.09, "vef": 0.409223, "vnd": 103825, "xag": 0.131804, "xau": 0.00154081, "xdr": 3.11, "xlm": 7.464225, "xrp": 1.466799, "yfi": 0.00043773, "zar": 73.98, "bits": 42.92, "link": 0.15870363, "sats": 4292.32}, "price_change_24h": 0.02296717, "price_change_percentage_24h": 0.55573, "price_change_percentage_7d": 1.67111, "price_change_percentage_14d": 4.08717, "price_change_percentage_30d": 18.18329, "price_change_percentage_60d": 25.66648, "price_change_percentage_200d": 46.63819, "price_change_percentage_1y": 171.29732, "market_cap_change_24h": 0.0, "market_cap_change_percentage_24h": 0.0, "price_change_24h_in_currency": {"aed": 0.084089, "ars": 24.29, "aud": 0.107698, "bch": -0.0005333402549321, "bdt": 1.92, "bhd": 0.00845095, "bmd": 0.02296717, "bnb": -0.000932995068703804, "brl": 0.063535, "btc": -2.87623958793e-07, "cad": 0.055172, "chf": 0.02597724, "clp": -1.4578940972487544, "cny": 0.126853, "czk": 0.281433, "dkk": 0.216547, "dot": -0.002631518292334822, "eos": -0.7484143187727534, "eth": -2.0410746179412e-05, "eur": 0.02947057, "gbp": 0.02105157, "gel": 0.169236, "hkd": 0.184299, "huf": 11.73, "idr": 301.83, "ils": -0.02644214514378973, "inr": 2.07, "jpy": 5.7, "krw": 82.6, "kwd": 0.00734816, "lkr": 4.09, "ltc": 1.769e-05, "mmk": 48.19, "mxn": 0.4417, "myr": 0.0339667, "ngn": 1.31, "nok": 0.192959, "nzd": 0.102655, "php": -0.1629902708406803, "pkr": 4.23, "pln": 0.173739, "rub": -2.157911504520598, "sar": 0.089069, "sek": 0.432457, "sgd": 0.03619727, "thb": 0.674634, "try": 0.840906, "twd": 0.290071, "uah": 0.831629, "usd": 0.02296717, "vef": 0.0022997, "vnd": 583.52, "xag": 0.00079803, "xau": 1.06e-05, "xdr": 0.01024431, "xlm": 0.39795225, "xrp": 0.00517734, "yfi": -1.6198440304544e-05, "zar": 0.806945, "bits": -0.2876239587927998, "link": 0.00773476, "sats": -28.76239587928012}, "price_change_percentage_1h_in_currency": {"aed": -0.10069, "ars": -0.10446, "aud": 0.07904, "bch": -0.64463, "bdt": -0.10055, "bhd": -0.10055, "bmd": -0.10055, "bnb": -1.44104, "brl": -0.18317, "btc": -0.08048, "cad": -0.0796, "chf": -0.04117, "clp": -0.10055, "cny": -0.15824, "czk": -0.09576, "dkk": -0.01609, "dot": -0.22482, "eos": 0.01341, "eth": -0.11913, "eur": -0.0117, "gbp": -0.08535, "gel": -0.10055, "hkd": -0.08919, "huf": -0.04364, "idr": -0.22083, "ils": 0.02691, "inr": -0.07636, "jpy": -0.06824, "krw": -0.05211, "kwd": -0.09113, "lkr": -0.10055, "ltc": 0.65584, "mmk": -0.10055, "mxn": 0.04422, "myr": -0.07809, "ngn": -0.10055, "nok": -0.21442, "nzd": 0.03699, "php": -0.27441, "pkr": -0.10055, "pln": 0.06755, "rub": 0.84784, "sar": -0.09218, "sek": -0.02291, "sgd": -0.03242, "thb": -0.00636, "try": -0.10113, "twd": -0.03736, "uah": -0.10055, "usd": -0.10055, "vef": -0.10055, "vnd": -0.10055, "xag": 0.27444, "xau": 0.13726, "xdr": -0.10055, "xlm": -0.09416, "xrp": -0.57806, "yfi": -1.10015, "zar": 0.20054, "bits": -0.08048, "link": 0.52194, "sats": -0.08048}, "price_change_percentage_24h_in_currency": {"aed": 0.55395, "ars": 0.58105, "aud": 1.69387, "bch": -6.9064, "bdt": 0.38727, "bhd": 0.54239, "bmd": 0.55573, "bnb": -14.70238, "brl": 0.2537, "btc": -0.66463, "cad": 0.95284, "chf": 0.70968, "clp": -0.03604, "cny": 0.42172, "czk": 0.28388, "dkk": 0.73929, "dot": -0.63267, "eos": -20.42044, "eth": -1.78906, "eur": 0.75044, "gbp": 0.64646, "gel": 1.43935, "hkd": 0.57298, "huf": 0.71994, "idr": 0.45817, "ils": -0.17568, "inr": 0.59015, "jpy": 0.9209, "krw": 1.42673, "kwd": 0.5783, "lkr": 0.33952, "ltc": 0.05588, "mmk": 0.55573, "mxn": 0.52479, "myr": 0.18409, "ngn": 0.01897, "nok": 0.42196, "nzd": 1.46585, "php": -0.06732, "pkr": 0.36683, "pln": 1.03191, "rub": -0.48748, "sar": 0.57363, "sek": 0.95346, "sgd": 0.65164, "thb": 0.47522, "try": 0.58554, "twd": 0.21574, "uah": 0.48085, "usd": 0.55573, "vef": 0.55573, "vnd": 0.55573, "xag": 0.59645, "xau": 0.67793, "xdr": 0.32462, "xlm": 5.18402, "xrp": 0.33053, "yfi": -3.52464, "zar": 1.08053, "bits": -0.66463, "link": 4.75044, "sats": -0.66463}, "price_change_percentage_7d_in_currency": {"aed": 1.66986, "ars": 2.12144, "aud": 2.64593, "bch": -11.4609, "bdt": 1.5803, "bhd": 1.67138, "bmd": 1.67111, "bnb": -17.79043, "brl": 5.65505, "btc": -1.70449, "cad": 1.74641, "chf": 2.04221, "clp": 1.18235, "cny": 1.99314, "czk": 1.08216, "dkk": 1.62317, "dot": -16.49799, "eos": -43.13814, "eth": -6.22831, "eur": 1.63577, "gbp": 0.9877, "gel": 6.88501, "hkd": 1.71272, "huf": 2.72838, "idr": 1.98597, "ils": 0.87048, "inr": 2.0094, "jpy": 0.79469, "krw": 3.0415, "kwd": 1.65392, "lkr": 1.3556, "ltc": -26.21229, "mmk": 1.67111, "mxn": -0.00157, "myr": 1.77407, "ngn": -0.19361, "nok": 0.88182, "nzd": 2.46688, "php": 5.21951, "pkr": 1.57407, "pln": 1.5348, "rub": 0.04532, "sar": 1.7057, "sek": 2.17932, "sgd": 1.73584, "thb": 0.78722, "try": 1.95475, "twd": 1.25887, "uah": 2.06812, "usd": 1.67111, "vef": 1.67111, "vnd": 1.68401, "xag": 1.02901, "xau": 2.01027, "xdr": 1.00292, "xlm": -7.75413, "xrp": -45.8615, "yfi": -20.94343, "zar": 2.02034, "bits": -1.70449, "link": -24.39957, "sats": -1.70449}, "price_change_percentage_14d_in_currency": {"aed": 4.08632, "ars": 5.12022, "aud": 5.57629, "bch": -20.87645, "bdt": 4.62838, "bhd": 4.09242, "bmd": 4.08717, "bnb": -16.80934, "brl": 8.91141, "btc": 0.03149, "cad": 4.85566, "chf": 4.35952, "clp": 4.27042, "cny": 4.46948, "czk": 4.13614, "dkk": 4.74932, "dot": -39.64356, "eos": -53.39918, "eth": -12.66308, "eur": 4.77244, "gbp": 4.19683, "gel": 8.82702, "hkd": 4.11756, "huf": 6.20264, "idr": 4.42295, "ils": 0.51489, "inr": 4.50113, "jpy": 0.52722, "krw": 5.53638, "kwd": 4.10951, "lkr": 4.49369, "ltc": -32.09588, "mmk": 4.08717, "mxn": 5.21648, "myr": 3.62357, "ngn": 2.95296, "nok": 4.51359, "nzd": 4.87608, "php": 2.73381, "pkr": 4.60794, "pln": 3.97702, "rub": 9.8897, "sar": 4.18357, "sek": 4.75832, "sgd": 4.48309, "thb": 3.10635, "try": 4.77351, "twd": 3.79841, "uah": 5.80741, "usd": 4.08717, "vef": 4.08717, "vnd": 4.07394, "xag": 4.1782, "xau": 3.37521, "xdr": 4.62482, "xlm": -53.01347, "xrp": -57.37712, "yfi": -30.46461, "zar": 4.36173, "bits": 0.03149, "link": -38.18263, "sats": 0.03149}, "price_change_percentage_30d_in_currency": {"aed": 18.18201, "ars": 20.74744, "aud": 21.0968, "bch": -31.82202, "bdt": 18.68801, "bhd": 18.22344, "bmd": 18.18329, "bnb": -14.0444, "brl": 25.24877, "btc": -16.18192, "cad": 19.4196, "chf": 21.11625, "clp": 19.95488, "cny": 21.01526, "czk": 21.64155, "dkk": 22.55574, "dot": -55.66392, "eos": -65.84006, "eth": -21.70886, "eur": 22.55094, "gbp": 20.88909, "gel": 24.01684, "hkd": 18.3476, "huf": 24.62751, "idr": 19.40395, "ils": 13.9018, "inr": 19.00982, "jpy": 16.81154, "krw": 21.59302, "kwd": 18.61374, "lkr": 17.7196, "ltc": -40.28303, "mmk": 18.18329, "mxn": 19.42089, "myr": 20.19648, "ngn": 19.29591, "nok": 18.65599, "nzd": 20.96791, "php": 17.84023, "pkr": 18.74568, "pln": 20.88802, "rub": 28.11903, "sar": 18.28367, "sek": 21.73186, "sgd": 20.58604, "thb": 19.95877, "try": 19.60322, "twd": 20.11896, "uah": 19.88973, "usd": 18.18329, "vef": 18.18329, "vnd": 18.57363, "xag": 24.76692, "xau": 22.54548, "xdr": 20.09961, "xlm": -79.17036, "xrp": -77.44008, "yfi": -42.7863, "zar": 22.29461, "bits": -16.18192, "link": -48.46744, "sats": -16.18192}, "price_change_percentage_60d_in_currency": {"aed": 25.66477, "ars": 30.96427, "aud": 33.38361, "bch": -29.53721, "bdt": 25.35501, "bhd": 25.75489, "bmd": 25.66648, "bnb": -7.89121, "brl": 39.11438, "btc": -19.27392, "cad": 30.14963, "chf": 29.99427, "clp": 32.17601, "cny": 29.57217, "czk": 30.12421, "dkk": 31.37339, "dot": -47.67917, "eos": -58.14622, "eth": -18.1086, "eur": 31.39142, "gbp": 30.08829, "gel": 31.99005, "hkd": 25.95044, "huf": 35.70065, "idr": 27.708, "ils": 19.06261, "inr": 26.68781, "jpy": 27.09457, "krw": 31.83314, "kwd": 26.24614, "lkr": 24.01835, "ltc": -37.50056, "mmk": 25.66648, "mxn": 32.65462, "myr": 32.45605, "ngn": 27.11523, "nok": 30.31405, "nzd": 32.36079, "php": 29.17297, "pkr": 25.50872, "pln": 30.82451, "rub": 40.31358, "sar": 25.71449, "sek": 33.51606, "sgd": 29.69174, "thb": 29.70151, "try": 27.51764, "twd": 26.20361, "uah": 27.11988, "usd": 25.66648, "vef": 25.66648, "vnd": 28.90708, "xag": 31.043, "xau": 26.37343, "xdr": 28.77946, "xlm": -77.4458, "xrp": -74.64768, "yfi": -32.97146, "zar": 30.5692, "bits": -19.27392, "link": -42.08924, "sats": -19.27392}, "price_change_percentage_200d_in_currency": {"aed": 46.64019, "ars": 67.51262, "aud": 52.90541, "bch": 23.22909, "bdt": 49.89694, "bhd": 46.92858, "bmd": 46.63819, "bnb": 10.65986, "brl": 73.54307, "btc": 1.47442, "cad": 51.46802, "chf": 43.09634, "clp": 60.12992, "cny": 47.55372, "czk": 54.41774, "dkk": 51.67622, "dot": 5.09354, "eos": -15.56399, "eth": 22.77449, "eur": 51.88918, "gbp": 46.9292, "gel": 53.03695, "hkd": 46.29427, "huf": 62.64445, "idr": 46.27141, "ils": 43.10951, "inr": 49.11908, "jpy": 41.71103, "krw": 52.97983, "kwd": 46.79189, "lkr": 42.40737, "ltc": -5.62541, "mmk": 46.50954, "mxn": 79.75529, "myr": 39.14593, "ngn": 65.24828, "nok": 50.86576, "nzd": 53.78522, "php": 47.9276, "pkr": 46.52784, "pln": 53.09597, "rub": 70.82222, "sar": 46.92232, "sek": 50.75927, "sgd": 46.57892, "thb": 38.84877, "try": 58.29161, "twd": 47.75096, "uah": 55.41932, "usd": 46.63819, "vef": 46.63819, "vnd": 46.39604, "xag": 49.26441, "xau": 34.14637, "xdr": 47.566, "xlm": -69.0378, "xrp": -70.98478, "yfi": 10.36247, "zar": 46.52895, "bits": 1.47442, "link": -1.87299, "sats": 1.47442}, "price_change_percentage_1y_in_currency": {"aed": 171.33795, "ars": 660.5213, "aud": 180.27521, "bch": 16.94337, "bdt": 193.87988, "bhd": 171.30092, "bmd": 171.29732, "bnb": -18.05722, "brl": 235.81701, "btc": 16.22897, "cad": 181.9522, "chf": 174.89773, "clp": 203.40517, "cny": 178.39832, "czk": 189.86308, "dkk": 180.34854, "dot": 52.37291, "eos": 37.1935, "eth": 64.29694, "eur": 180.25608, "gbp": 171.00695, "gel": 188.37901, "hkd": 170.26352, "huf": 206.68431, "idr": 179.35471, "ils": 163.73225, "inr": 175.74919, "jpy": 177.72585, "krw": 193.37073, "kwd": 170.24893, "lkr": 139.98343, "ltc": 52.07076, "mmk": 170.41905, "mxn": 220.24471, "myr": 159.06623, "ngn": 469.24673, "nok": 179.49086, "nzd": 186.4673, "php": 185.38963, "pkr": 167.46999, "pln": 178.35785, "rub": 216.94375, "sar": 171.76329, "sek": 186.47869, "sgd": 173.24017, "thb": 166.70874, "try": 226.00099, "twd": 180.27413, "uah": 210.38725, "usd": 171.29732, "vef": 171.29732, "vnd": 184.35904, "xag": 121.62934, "xau": 112.74556, "xdr": 174.45456, "xlm": -34.60414, "xrp": -35.01546, "yfi": 154.84672, "zar": 163.41862, "bits": 16.22897, "link": 79.26227, "sats": 16.22897}, "market_cap_change_24h_in_currency": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "gel": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "market_cap_change_percentage_24h_in_currency": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "gel": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_supply": 330748290.397543, "max_supply": null, "max_supply_infinite": true, "circulating_supply": 0.0, "last_updated": "2024-12-04T08:30:19.337Z"}, "community_data": {"facebook_likes": null, "twitter_followers": 444515, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 0, "reddit_accounts_active_48h": 0, "telegram_channel_user_count": null}, "developer_data": {"forks": 0, "stars": 0, "subscribers": 0, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": 0, "last_4_weeks_commit_activity_series": []}, "status_updates": [], "last_updated": "2024-12-04T08:30:19.337Z", "tickers": [{"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 4.1542470532, "volume": 14129718.652458, "converted_last": {"btc": 4.298e-05, "eth": 0.00112024, "usd": 4.15}, "converted_volume": {"btc": 604.374, "eth": 15753, "usd": 58426424}, "trust_score": "green", "bid_ask_spread_percentage": 0.602833, "timestamp": "2024-12-04T08:29:09+00:00", "last_traded_at": "2024-12-04T08:29:09+00:00", "last_fetch_at": "2024-12-04T08:29:09+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 4.1559071214, "volume": 12873252.108825, "converted_last": {"btc": 4.3e-05, "eth": 0.0011207, "usd": 4.16}, "converted_volume": {"btc": 550.249, "eth": 14343, "usd": 53187867}, "trust_score": "green", "bid_ask_spread_percentage": 0.603655, "timestamp": "2024-12-04T08:28:49+00:00", "last_traded_at": "2024-12-04T08:28:49+00:00", "last_fetch_at": "2024-12-04T08:28:49+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.01759141177, "volume": 12233864.525261, "converted_last": {"btc": 4.298e-05, "eth": 0.00112028, "usd": 4.15}, "converted_volume": {"btc": 539.488, "eth": 14062, "usd": 52153686}, "trust_score": "green", "bid_ask_spread_percentage": 0.602792, "timestamp": "2024-12-04T08:29:10+00:00", "last_traded_at": "2024-12-04T08:29:10+00:00", "last_fetch_at": "2024-12-04T08:29:10+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=So11111111111111111111111111111111111111112&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01760793507, "volume": 2135636.283089, "converted_last": {"btc": 4.304e-05, "eth": 0.00112254, "usd": 4.16}, "converted_volume": {"btc": 93.738, "eth": 2445, "usd": 9059724}, "trust_score": "green", "bid_ask_spread_percentage": 0.603789, "timestamp": "2024-12-04T08:27:50+00:00", "last_traded_at": "2024-12-04T08:27:50+00:00", "last_fetch_at": "2024-12-04T08:27:50+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01762833333, "volume": 1346382.05134, "converted_last": {"btc": 4.309e-05, "eth": 0.00112384, "usd": 4.16}, "converted_volume": {"btc": 59.497, "eth": 1552, "usd": 5750340}, "trust_score": "green", "bid_ask_spread_percentage": 0.60298, "timestamp": "2024-12-04T08:27:53+00:00", "last_traded_at": "2024-12-04T08:27:53+00:00", "last_fetch_at": "2024-12-04T08:27:53+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.01760954029, "volume": 1348376.599475, "converted_last": {"btc": 4.302e-05, "eth": 0.00112143, "usd": 4.16}, "converted_volume": {"btc": 59.165, "eth": 1542, "usd": 5719586}, "trust_score": "green", "bid_ask_spread_percentage": 0.602827, "timestamp": "2024-12-04T08:23:15+00:00", "last_traded_at": "2024-12-04T08:23:15+00:00", "last_fetch_at": "2024-12-04T08:29:09+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=So11111111111111111111111111111111111111112&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "7VFCXTUXX5WJV5JADK17DUJ4KSGAU7UTNKJ4B963VOXS", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.001119781324, "volume": 1106236.100859, "converted_last": {"btc": 4.29e-05, "eth": 0.00111809, "usd": 4.15}, "converted_volume": {"btc": 48.551503, "eth": 1266, "usd": 4693599}, "trust_score": "green", "bid_ask_spread_percentage": 0.602949, "timestamp": "2024-12-04T08:29:12+00:00", "last_traded_at": "2024-12-04T08:29:12+00:00", "last_fetch_at": "2024-12-04T08:29:12+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "ethereum-wormhole"}, {"base": "JLP", "target": "USDT", "market": {"name": "XT.COM", "identifier": "xt", "has_trading_incentive": false}, "last": 4.1505, "volume": 201654.8, "converted_last": {"btc": 4.297e-05, "eth": 0.00111966, "usd": 4.15}, "converted_volume": {"btc": 8.63066, "eth": 224.902, "usd": 834152}, "trust_score": "green", "bid_ask_spread_percentage": 0.202259, "timestamp": "2024-12-04T08:31:36+00:00", "last_traded_at": "2024-12-04T08:31:36+00:00", "last_fetch_at": "2024-12-04T08:31:36+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.xt.com/en/trade/jlp_usdt", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "tether"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "HUBSVENPJO5PWQNKH57QZXJQASDTVXCSK7BVKTSZTCSX", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01653350129, "volume": 352960.638235, "converted_last": {"btc": 4.296e-05, "eth": 0.00111979, "usd": 4.15}, "converted_volume": {"btc": 15.502349, "eth": 404.081, "usd": 1498480}, "trust_score": "green", "bid_ask_spread_percentage": 0.605175, "timestamp": "2024-12-04T08:28:52+00:00", "last_traded_at": "2024-12-04T08:28:52+00:00", "last_fetch_at": "2024-12-04T08:28:52+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "solanahub-staked-sol"}, {"base": "USDSWR9APDHK5BVJKMJZFF41FFUX8BSXDKCR81VTWCA", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.2407895323, "volume": 1155531.731722, "converted_last": {"btc": 4.296e-05, "eth": 0.00111986, "usd": 4.15}, "converted_volume": {"btc": 12.00891, "eth": 313.017, "usd": 1160932}, "trust_score": "green", "bid_ask_spread_percentage": 0.605745, "timestamp": "2024-12-04T08:29:12+00:00", "last_traded_at": "2024-12-04T08:29:12+00:00", "last_fetch_at": "2024-12-04T08:29:12+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4&tokenOut=USDSwr9ApdHk5bvJKMjzff41FfuX8bSxdKcR81vTwcA ", "token_info_url": null, "coin_id": "usds", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "7VFCXTUXX5WJV5JADK17DUJ4KSGAU7UTNKJ4B963VOXS", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.001121969571, "volume": 214502.569499, "converted_last": {"btc": 4.298e-05, "eth": 0.0011202, "usd": 4.15}, "converted_volume": {"btc": 9.411825, "eth": 245.323, "usd": 909865}, "trust_score": "green", "bid_ask_spread_percentage": 0.603226, "timestamp": "2024-12-04T08:29:12+00:00", "last_traded_at": "2024-12-04T08:29:12+00:00", "last_fetch_at": "2024-12-04T08:29:12+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "ethereum-wormhole"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "JUPSOLAHXQIZZTSFEWMTRRGPNYFM8F6SZDOSWBJX93V", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01659309452, "volume": 191501.383952, "converted_last": {"btc": 4.305e-05, "eth": 0.00112278, "usd": 4.16}, "converted_volume": {"btc": 8.409816, "eth": 219.358, "usd": 812807}, "trust_score": "green", "bid_ask_spread_percentage": 0.605336, "timestamp": "2024-12-04T08:27:52+00:00", "last_traded_at": "2024-12-04T08:27:52+00:00", "last_fetch_at": "2024-12-04T08:27:52+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "jupiter-staked-sol"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "J1TOSO1UCK3RLMJORHTTRVWY9HJ7X8V9YYAC6Y7KGCPN", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01520234114, "volume": 166840.195099, "converted_last": {"btc": 4.323e-05, "eth": 0.00112753, "usd": 4.18}, "converted_volume": {"btc": 7.378996, "eth": 192.471, "usd": 713179}, "trust_score": "green", "bid_ask_spread_percentage": 0.605621, "timestamp": "2024-12-04T08:27:52+00:00", "last_traded_at": "2024-12-04T08:27:52+00:00", "last_fetch_at": "2024-12-04T08:27:52+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "jito-staked-sol"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.01760216894, "volume": 162520.117376, "converted_last": {"btc": 4.301e-05, "eth": 0.00112096, "usd": 4.16}, "converted_volume": {"btc": 7.050506, "eth": 183.774, "usd": 681591}, "trust_score": "green", "bid_ask_spread_percentage": 0.62547, "timestamp": "2024-12-04T08:29:12+00:00", "last_traded_at": "2024-12-04T08:29:12+00:00", "last_fetch_at": "2024-12-04T08:29:12+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=So11111111111111111111111111111111111111112&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 4.152509954, "volume": 141546.135905, "converted_last": {"btc": 4.295e-05, "eth": 0.0011207, "usd": 4.15}, "converted_volume": {"btc": 6.04964, "eth": 157.844, "usd": 584764}, "trust_score": "green", "bid_ask_spread_percentage": 0.604368, "timestamp": "2024-12-04T08:26:37+00:00", "last_traded_at": "2024-12-04T08:26:37+00:00", "last_fetch_at": "2024-12-04T08:26:37+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01759173118, "volume": 137557.323127, "converted_last": {"btc": 4.294e-05, "eth": 0.00111925, "usd": 4.15}, "converted_volume": {"btc": 6.094557, "eth": 158.844, "usd": 589172}, "trust_score": "green", "bid_ask_spread_percentage": 0.608449, "timestamp": "2024-12-04T08:30:45+00:00", "last_traded_at": "2024-12-04T08:30:45+00:00", "last_fetch_at": "2024-12-04T08:30:45+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "ES9VMFRZACERMJFRF4H2FYD4KCONKY11MCCE8BENWNYB", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 4.1525273112, "volume": 152662.748854, "converted_last": {"btc": 4.298e-05, "eth": 0.00112031, "usd": 4.15}, "converted_volume": {"btc": 6.512888, "eth": 169.764, "usd": 629546}, "trust_score": "green", "bid_ask_spread_percentage": 0.656263, "timestamp": "2024-12-04T08:28:50+00:00", "last_traded_at": "2024-12-04T08:28:50+00:00", "last_fetch_at": "2024-12-04T08:28:50+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "tether"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01760031962, "volume": 93582.794127, "converted_last": {"btc": 4.302e-05, "eth": 0.00112206, "usd": 4.16}, "converted_volume": {"btc": 4.145926, "eth": 108.141, "usd": 400703}, "trust_score": "green", "bid_ask_spread_percentage": 0.60803, "timestamp": "2024-12-04T08:21:46+00:00", "last_traded_at": "2024-12-04T08:21:46+00:00", "last_fetch_at": "2024-12-04T08:27:49+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.0174645448, "volume": 90895.870918, "converted_last": {"btc": 4.269e-05, "eth": 0.0011134, "usd": 4.13}, "converted_volume": {"btc": 4.014253, "eth": 104.706, "usd": 387977}, "trust_score": "green", "bid_ask_spread_percentage": 0.610336, "timestamp": "2024-12-04T08:03:46+00:00", "last_traded_at": "2024-12-04T08:03:46+00:00", "last_fetch_at": "2024-12-04T08:27:49+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01760149145, "volume": 81593.535133, "converted_last": {"btc": 4.302e-05, "eth": 0.00112125, "usd": 4.16}, "converted_volume": {"btc": 3.596997, "eth": 93.755, "usd": 347731}, "trust_score": "green", "bid_ask_spread_percentage": 0.611817, "timestamp": "2024-12-04T08:29:53+00:00", "last_traded_at": "2024-12-04T08:29:53+00:00", "last_fetch_at": "2024-12-04T08:29:53+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01767002143, "volume": 76283.489185, "converted_last": {"btc": 4.319e-05, "eth": 0.00112574, "usd": 4.17}, "converted_volume": {"btc": 3.370849, "eth": 87.864, "usd": 325831}, "trust_score": "green", "bid_ask_spread_percentage": 0.603106, "timestamp": "2024-12-04T08:10:48+00:00", "last_traded_at": "2024-12-04T08:10:48+00:00", "last_fetch_at": "2024-12-04T08:28:52+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Raydium (CLMM)", "identifier": "raydium-clmm", "has_trading_incentive": false}, "last": 0.01760035921, "volume": 75903.24274, "converted_last": {"btc": 4.299e-05, "eth": 0.00112043, "usd": 4.16}, "converted_volume": {"btc": 3.330196, "eth": 86.803, "usd": 321939}, "trust_score": "green", "bid_ask_spread_percentage": 0.604293, "timestamp": "2024-12-04T08:19:07+00:00", "last_traded_at": "2024-12-04T08:19:07+00:00", "last_fetch_at": "2024-12-04T08:29:27+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://raydium.io/swap?inputCurrency=27g8mtk7vttcchkpasjsddkwwyfoqt6ggeukidvjidd4&outputCurrency=so11111111111111111111111111111111111111112", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 4.1483420593, "volume": 76694.408323, "converted_last": {"btc": 4.292e-05, "eth": 0.00111866, "usd": 4.15}, "converted_volume": {"btc": 3.279693, "eth": 85.488, "usd": 317020}, "trust_score": "green", "bid_ask_spread_percentage": 0.61096, "timestamp": "2024-12-04T08:28:50+00:00", "last_traded_at": "2024-12-04T08:28:50+00:00", "last_fetch_at": "2024-12-04T08:28:50+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "BOBAM3U8QMQZHY1HWATNVZE9DLXVKGKYK3TD3T8MLVA", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.0004976625644, "volume": 147297859.096702, "converted_last": {"btc": 4.296e-05, "eth": 0.00111979, "usd": 4.15}, "converted_volume": {"btc": 3.044977, "eth": 79.37, "usd": 294332}, "trust_score": "green", "bid_ask_spread_percentage": 0.608467, "timestamp": "2024-12-04T08:28:54+00:00", "last_traded_at": "2024-12-04T08:28:54+00:00", "last_fetch_at": "2024-12-04T08:28:54+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "boba-oppa", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "MSOLZYCXHDYGDZU16G5QSH3I5K3Z3KZK7YTFQCJM7SO", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 70.4538785871, "volume": 764.032203426, "converted_last": {"btc": 4.296e-05, "eth": 0.00111986, "usd": 4.15}, "converted_volume": {"btc": 2.263158, "eth": 58.99, "usd": 218785}, "trust_score": "green", "bid_ask_spread_percentage": 0.604433, "timestamp": "2024-12-04T08:29:09+00:00", "last_traded_at": "2024-12-04T08:29:09+00:00", "last_fetch_at": "2024-12-04T08:29:09+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4&tokenOut=mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So ", "token_info_url": null, "coin_id": "msol", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "JUPYIWRYJFSKUPIHA7HKER8VUTAEFOSYBKEDZNSDVCN", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.3125005459, "volume": 105965.809372, "converted_last": {"btc": 4.296e-05, "eth": 0.00111966, "usd": 4.15}, "converted_volume": {"btc": 1.340481, "eth": 34.939409, "usd": 129588}, "trust_score": "green", "bid_ask_spread_percentage": 0.639132, "timestamp": "2024-12-04T08:29:53+00:00", "last_traded_at": "2024-12-04T08:29:53+00:00", "last_fetch_at": "2024-12-04T08:29:53+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-exchange-solana", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "COMP4SSDZXCLEU2MNLUGNNFC4CMLPMNG8QWHPVZAMU1H", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01630075132, "volume": 27906.265817, "converted_last": {"btc": 4.254e-05, "eth": 0.00110957, "usd": 4.11}, "converted_volume": {"btc": 1.2347, "eth": 32.205394, "usd": 119334}, "trust_score": "green", "bid_ask_spread_percentage": 0.607981, "timestamp": "2024-12-04T08:09:56+00:00", "last_traded_at": "2024-12-04T08:09:56+00:00", "last_fetch_at": "2024-12-04T08:27:49+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "solana-compass-staked-sol"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.017625, "volume": 25365.382394, "converted_last": {"btc": 4.308e-05, "eth": 0.00112363, "usd": 4.16}, "converted_volume": {"btc": 1.113794, "eth": 29.051744, "usd": 107648}, "trust_score": "green", "bid_ask_spread_percentage": 0.606573, "timestamp": "2024-12-04T07:37:02+00:00", "last_traded_at": "2024-12-04T07:37:02+00:00", "last_fetch_at": "2024-12-04T08:27:49+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01758768787, "volume": 22104.050088, "converted_last": {"btc": 4.299e-05, "eth": 0.0011205, "usd": 4.16}, "converted_volume": {"btc": 0.99322741, "eth": 25.889273, "usd": 96007}, "trust_score": "green", "bid_ask_spread_percentage": 0.611446, "timestamp": "2024-12-04T08:28:50+00:00", "last_traded_at": "2024-12-04T08:28:50+00:00", "last_fetch_at": "2024-12-04T08:28:50+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "JUPYIWRYJFSKUPIHA7HKER8VUTAEFOSYBKEDZNSDVCN", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.3106588828, "volume": 75070.613333, "converted_last": {"btc": 4.296e-05, "eth": 0.00111986, "usd": 4.15}, "converted_volume": {"btc": 0.93403625, "eth": 24.346, "usd": 90296}, "trust_score": "green", "bid_ask_spread_percentage": 0.610501, "timestamp": "2024-12-04T08:29:11+00:00", "last_traded_at": "2024-12-04T08:29:11+00:00", "last_fetch_at": "2024-12-04T08:29:11+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4&tokenOut=JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN ", "token_info_url": null, "coin_id": "jupiter-exchange-solana", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 4.1525110172, "volume": 21071.035149, "converted_last": {"btc": 4.296e-05, "eth": 0.00111966, "usd": 4.15}, "converted_volume": {"btc": 0.90071327, "eth": 23.476934, "usd": 87074}, "trust_score": "green", "bid_ask_spread_percentage": 0.635653, "timestamp": "2024-12-04T08:29:48+00:00", "last_traded_at": "2024-12-04T08:29:48+00:00", "last_fetch_at": "2024-12-04T08:29:48+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 4.1525927985, "volume": 19504.173148, "converted_last": {"btc": 4.296e-05, "eth": 0.00111971, "usd": 4.15}, "converted_volume": {"btc": 0.83148304, "eth": 21.672913, "usd": 80382}, "trust_score": "green", "bid_ask_spread_percentage": 0.608394, "timestamp": "2024-12-04T08:29:11+00:00", "last_traded_at": "2024-12-04T08:29:11+00:00", "last_fetch_at": "2024-12-04T08:29:11+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01752613539, "volume": 14923.658985, "converted_last": {"btc": 4.284e-05, "eth": 0.00111733, "usd": 4.14}, "converted_volume": {"btc": 0.65782909, "eth": 17.158542, "usd": 63579}, "trust_score": "green", "bid_ask_spread_percentage": 0.607694, "timestamp": "2024-12-04T08:03:47+00:00", "last_traded_at": "2024-12-04T08:03:47+00:00", "last_fetch_at": "2024-12-04T08:27:52+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.01759225523, "volume": 10870.645783, "converted_last": {"btc": 4.308e-05, "eth": 0.00112157, "usd": 4.17}, "converted_volume": {"btc": 0.47985586, "eth": 12.492077, "usd": 46410}, "trust_score": "green", "bid_ask_spread_percentage": 0.74629, "timestamp": "2024-12-04T08:11:29+00:00", "last_traded_at": "2024-12-04T08:11:29+00:00", "last_fetch_at": "2024-12-04T08:11:29+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=So11111111111111111111111111111111111111112&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01758265139, "volume": 7864.550854, "converted_last": {"btc": 4.297e-05, "eth": 0.00112005, "usd": 4.15}, "converted_volume": {"btc": 0.35516168, "eth": 9.257227, "usd": 34334}, "trust_score": "green", "bid_ask_spread_percentage": 0.609948, "timestamp": "2024-12-04T08:19:56+00:00", "last_traded_at": "2024-12-04T08:19:56+00:00", "last_fetch_at": "2024-12-04T08:29:53+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "JUPSOLAHXQIZZTSFEWMTRRGPNYFM8F6SZDOSWBJX93V", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01656511401, "volume": 7747.109019, "converted_last": {"btc": 4.297e-05, "eth": 0.00112001, "usd": 4.15}, "converted_volume": {"btc": 0.34277722, "eth": 8.934428, "usd": 33137}, "trust_score": "green", "bid_ask_spread_percentage": 0.61706, "timestamp": "2024-12-04T08:19:55+00:00", "last_traded_at": "2024-12-04T08:19:55+00:00", "last_fetch_at": "2024-12-04T08:29:51+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "jupiter-staked-sol"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Raydium (CLMM)", "identifier": "raydium-clmm", "has_trading_incentive": false}, "last": 0.0172606284, "volume": 5856.513421, "converted_last": {"btc": 4.216e-05, "eth": 0.0010988, "usd": 4.08}, "converted_volume": {"btc": 0.26027137, "eth": 6.784069, "usd": 25161}, "trust_score": "green", "bid_ask_spread_percentage": 0.60556, "timestamp": "2024-12-04T07:36:46+00:00", "last_traded_at": "2024-12-04T07:36:46+00:00", "last_fetch_at": "2024-12-04T08:29:27+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://raydium.io/swap?inputCurrency=27g8mtk7vttcchkpasjsddkwwyfoqt6ggeukidvjidd4&outputCurrency=so11111111111111111111111111111111111111112", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 4.1468531469, "volume": 2235.102175, "converted_last": {"btc": 4.29e-05, "eth": 0.00111814, "usd": 4.15}, "converted_volume": {"btc": 0.09535609, "eth": 2.48544, "usd": 9218.32}, "trust_score": "green", "bid_ask_spread_percentage": 0.645385, "timestamp": "2024-12-04T08:29:51+00:00", "last_traded_at": "2024-12-04T08:29:51+00:00", "last_fetch_at": "2024-12-04T08:29:51+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.01759019628, "volume": 1332.734486, "converted_last": {"btc": 4.297e-05, "eth": 0.00112087, "usd": 4.15}, "converted_volume": {"btc": 0.05901595, "eth": 1.539479, "usd": 5705.17}, "trust_score": "green", "bid_ask_spread_percentage": 0.636508, "timestamp": "2024-12-04T08:16:25+00:00", "last_traded_at": "2024-12-04T08:16:25+00:00", "last_fetch_at": "2024-12-04T08:25:56+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=So11111111111111111111111111111111111111112&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "J1TOSO1UCK3RLMJORHTTRVWY9HJ7X8V9YYAC6Y7KGCPN", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01513836321, "volume": 809.100134, "converted_last": {"btc": 4.301e-05, "eth": 0.00111819, "usd": 4.16}, "converted_volume": {"btc": 0.03593981, "eth": 0.93428947, "usd": 3477.74}, "trust_score": "green", "bid_ask_spread_percentage": 0.668038, "timestamp": "2024-12-04T08:03:55+00:00", "last_traded_at": "2024-12-04T08:03:55+00:00", "last_fetch_at": "2024-12-04T08:03:55+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "jito-staked-sol"}, {"base": "JUPYIWRYJFSKUPIHA7HKER8VUTAEFOSYBKEDZNSDVCN", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.3120048467, "volume": 2518.751583, "converted_last": {"btc": 4.296e-05, "eth": 0.00111966, "usd": 4.15}, "converted_volume": {"btc": 0.03195873, "eth": 0.83299869, "usd": 3089.53}, "trust_score": "green", "bid_ask_spread_percentage": 0.634034, "timestamp": "2024-12-04T08:29:52+00:00", "last_traded_at": "2024-12-04T08:29:52+00:00", "last_fetch_at": "2024-12-04T08:29:52+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-exchange-solana", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "3NZ9JMVBMGAQOCYBIC2C7LQCJSCMGSAZ6VQQTDZCQMJH", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 4.314427648e-05, "volume": 498.232816, "converted_last": {"btc": 4.3e-05, "eth": 0.00112109, "usd": 4.16}, "converted_volume": {"btc": 0.02157123, "eth": 0.56234335, "usd": 2085.92}, "trust_score": "green", "bid_ask_spread_percentage": 0.667746, "timestamp": "2024-12-04T07:47:17+00:00", "last_traded_at": "2024-12-04T07:47:17+00:00", "last_fetch_at": "2024-12-04T08:17:40+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-btc-wormhole"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "3KROURETDWLYFREAPBDH6NTWQGS7Y6RORLY8JB1PJXOM", "market": {"name": "Raydium (CLMM)", "identifier": "raydium-clmm", "has_trading_incentive": false}, "last": 5505.7532918425, "volume": 413.438135, "converted_last": {"btc": 4.31e-05, "eth": 0.00112049, "usd": 4.17}, "converted_volume": {"btc": 0.019283, "eth": 0.50127975, "usd": 1865.93}, "trust_score": "green", "bid_ask_spread_percentage": 0.982572, "timestamp": "2024-12-04T08:03:47+00:00", "last_traded_at": "2024-12-04T08:03:47+00:00", "last_fetch_at": "2024-12-04T08:03:47+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://raydium.io/swap?inputCurrency=27g8mtk7vttcchkpasjsddkwwyfoqt6ggeukidvjidd4&outputCurrency=3krouretdwlyfreapbdh6ntwqgs7y6rorly8jb1pjxom", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "elawn-moosk"}, {"base": "MSOLZYCXHDYGDZU16G5QSH3I5K3Z3KZK7YTFQCJM7SO", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 70.5868583296, "volume": 2.056236892, "converted_last": {"btc": 4.3e-05, "eth": 0.0011216, "usd": 4.16}, "converted_volume": {"btc": 0.00603891, "eth": 0.15753267, "usd": 583.78}, "trust_score": "green", "bid_ask_spread_percentage": 0.675919, "timestamp": "2024-12-04T08:26:05+00:00", "last_traded_at": "2024-12-04T08:26:05+00:00", "last_fetch_at": "2024-12-04T08:26:05+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "msol", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.01726960776, "volume": 98.824006, "converted_last": {"btc": 4.218e-05, "eth": 0.00109799, "usd": 4.08}, "converted_volume": {"btc": 0.00438727, "eth": 0.1141972, "usd": 424.75}, "trust_score": "green", "bid_ask_spread_percentage": 0.87101, "timestamp": "2024-12-04T07:43:12+00:00", "last_traded_at": "2024-12-04T07:43:12+00:00", "last_fetch_at": "2024-12-04T08:13:18+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=So11111111111111111111111111111111111111112&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "COMP4SSDZXCLEU2MNLUGNNFC4CMLPMNG8QWHPVZAMU1H", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01637974174, "volume": 3289.755732, "converted_last": {"btc": 4.275e-05, "eth": 0.00111415, "usd": 4.13}, "converted_volume": {"btc": 0.14482928, "eth": 3.77495, "usd": 14001.02}, "trust_score": "yellow", "bid_ask_spread_percentage": 0.647573, "timestamp": "2024-12-04T07:12:50+00:00", "last_traded_at": "2024-12-04T07:12:50+00:00", "last_fetch_at": "2024-12-04T08:29:50+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "solana-compass-staked-sol"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 4.1597605085, "volume": 1658.535191, "converted_last": {"btc": 4.304e-05, "eth": 0.00112174, "usd": 4.16}, "converted_volume": {"btc": 0.07107452, "eth": 1.852615, "usd": 6870.17}, "trust_score": "yellow", "bid_ask_spread_percentage": 0.603448, "timestamp": "2024-12-04T03:46:56+00:00", "last_traded_at": "2024-12-04T03:46:56+00:00", "last_fetch_at": "2024-12-04T08:28:49+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 4.1456134227, "volume": 4542.097241, "converted_last": {"btc": 4.325e-05, "eth": 0.00113503, "usd": 4.14}, "converted_volume": {"btc": 0.19530489, "eth": 5.125059, "usd": 18715.27}, "trust_score": "yellow", "bid_ask_spread_percentage": 1.436198, "timestamp": "2024-12-04T02:55:24+00:00", "last_traded_at": "2024-12-04T02:55:24+00:00", "last_fetch_at": "2024-12-04T02:55:24+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "SO11111111111111111111111111111111111111112", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01727641933, "volume": 348.145542, "converted_last": {"btc": 4.223e-05, "eth": 0.00110067, "usd": 4.08}, "converted_volume": {"btc": 0.01547233, "eth": 0.40329873, "usd": 1495.58}, "trust_score": "yellow", "bid_ask_spread_percentage": 0.605564, "timestamp": "2024-12-04T05:20:12+00:00", "last_traded_at": "2024-12-04T05:20:12+00:00", "last_fetch_at": "2024-12-04T08:28:51+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "wrapped-solana"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "J9BCRQFX4P9D1BVLZRNCBMDV8F44A9LFDEQNE4YK2WMD", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 2.2866047051, "volume": 140.031583, "converted_last": {"btc": 4.299e-05, "eth": 0.00112051, "usd": 4.16}, "converted_volume": {"btc": 0.00598194, "eth": 0.15592159, "usd": 578.29}, "trust_score": "yellow", "bid_ask_spread_percentage": 0.612663, "timestamp": "2024-12-04T06:07:30+00:00", "last_traded_at": "2024-12-04T06:07:30+00:00", "last_fetch_at": "2024-12-04T08:29:11+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=J9BcrQfX4p9D1bvLzRNCbMDv8f44a9LFdeqNE4Yk2WMD&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "international-stable-currency"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "HUBSVENPJO5PWQNKH57QZXJQASDTVXCSK7BVKTSZTCSX", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.01717799145, "volume": 213.162082, "converted_last": {"btc": 4.293e-05, "eth": 0.00111822, "usd": 4.16}, "converted_volume": {"btc": 0.00925637, "eth": 0.24112257, "usd": 896.23}, "trust_score": "yellow", "bid_ask_spread_percentage": 0.753408, "timestamp": "2024-12-04T02:44:16+00:00", "last_traded_at": "2024-12-04T02:44:16+00:00", "last_fetch_at": "2024-12-04T08:14:43+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "solanahub-staked-sol"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 4.159843008, "volume": 199.721328, "converted_last": {"btc": 4.302e-05, "eth": 0.00112131, "usd": 4.16}, "converted_volume": {"btc": 0.008523, "eth": 0.22217187, "usd": 824.21}, "trust_score": "yellow", "bid_ask_spread_percentage": 0.874199, "timestamp": "2024-12-04T03:51:23+00:00", "last_traded_at": "2024-12-04T03:51:23+00:00", "last_fetch_at": "2024-12-04T08:19:57+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 4.1403405786, "volume": 76.401786, "converted_last": {"btc": 4.276e-05, "eth": 0.0011138, "usd": 4.14}, "converted_volume": {"btc": 0.00330837, "eth": 0.08618083, "usd": 320.33}, "trust_score": "yellow", "bid_ask_spread_percentage": 0.656668, "timestamp": "2024-12-04T06:44:24+00:00", "last_traded_at": "2024-12-04T06:44:24+00:00", "last_fetch_at": "2024-12-04T08:14:36+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "FLRGWXXAX8Q8ECF18WEDF3PLAYORXST5ORPY34D8JFBM", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 23166.3543409474, "volume": 36.383836, "converted_last": {"btc": 4.297e-05, "eth": 0.00112074, "usd": 4.15}, "converted_volume": {"btc": 0.00160662, "eth": 0.04190761, "usd": 155.36}, "trust_score": "yellow", "bid_ask_spread_percentage": 0.640936, "timestamp": "2024-12-04T05:22:33+00:00", "last_traded_at": "2024-12-04T05:22:33+00:00", "last_fetch_at": "2024-12-04T08:23:03+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "chinu-2"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "9EYSCPIYSGNEIMNQPZAZR7JN9GVFXFYZGTEJ85HV9L6U", "market": {"name": "Raydium (CLMM)", "identifier": "raydium-clmm", "has_trading_incentive": false}, "last": 298.771033478, "volume": 233.686756, "converted_last": {"btc": 4.204e-05, "eth": 0.00109667, "usd": 4.06}, "converted_volume": {"btc": 0.0098634, "eth": 0.25727276, "usd": 953.3}, "trust_score": "yellow", "bid_ask_spread_percentage": 2.453352, "timestamp": "2024-12-04T08:27:45+00:00", "last_traded_at": "2024-12-04T08:27:45+00:00", "last_fetch_at": "2024-12-04T08:27:45+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://raydium.io/swap?inputCurrency=27g8mtk7vttcchkpasjsddkwwyfoqt6ggeukidvjidd4&outputCurrency=9eyscpiysgneimnqpzazr7jn9gvfxfyzgtej85hv9l6u", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "tooker-kurlson"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "DEZXAZ8Z7PNRNRJJZ3WXBORGIXCA6XJNB7YAB1PPB263", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 95869.9707982959, "volume": 44.921581, "converted_last": {"btc": 4.261e-05, "eth": 0.0011091, "usd": 4.12}, "converted_volume": {"btc": 0.00200653, "eth": 0.0522303, "usd": 194.08}, "trust_score": "yellow", "bid_ask_spread_percentage": 1.303252, "timestamp": "2024-12-04T07:39:05+00:00", "last_traded_at": "2024-12-04T07:39:05+00:00", "last_fetch_at": "2024-12-04T08:09:53+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "bonk"}, {"base": "5OVNBEEEQVYI1CX3IR8DX5N1P7PDXYDBGF2X4TXVUSJM", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 71.9783509789, "volume": 0.138002643, "converted_last": {"btc": 4.3e-05, "eth": 0.00112159, "usd": 4.16}, "converted_volume": {"btc": 0.00041184, "eth": 0.01074323, "usd": 39.81}, "trust_score": "yellow", "bid_ask_spread_percentage": 0.818094, "timestamp": "2024-12-04T03:25:25+00:00", "last_traded_at": "2024-12-04T03:25:25+00:00", "last_fetch_at": "2024-12-04T08:25:58+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "socean-staked-sol", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "AVLHAHDCDQ4M4VHM4UG63OH7XC8JTK49DM5HOE9SAZQR", "market": {"name": "Raydium (CLMM)", "identifier": "raydium-clmm", "has_trading_incentive": false}, "last": 283.2596550422, "volume": 0.611727, "converted_last": {"btc": 4.04e-05, "eth": 0.00105572, "usd": 3.87}, "converted_volume": {"btc": 2.471e-05, "eth": 0.00064581, "usd": 2.37}, "trust_score": "yellow", "bid_ask_spread_percentage": 100.262623, "timestamp": "2024-12-04T03:42:28+00:00", "last_traded_at": "2024-12-04T03:42:28+00:00", "last_fetch_at": "2024-12-04T04:11:23+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://raydium.io/swap?inputCurrency=27g8mtk7vttcchkpasjsddkwwyfoqt6ggeukidvjidd4&outputCurrency=avlhahdcdq4m4vhm4ug63oh7xc8jtk49dm5hoe9sazqr", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "solama"}, {"base": "JUPYIWRYJFSKUPIHA7HKER8VUTAEFOSYBKEDZNSDVCN", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.3219619741, "volume": 835.694177, "converted_last": {"btc": 4.297e-05, "eth": 0.0011201, "usd": 4.15}, "converted_volume": {"btc": 0.01059501, "eth": 0.27614902, "usd": 1024.24}, "trust_score": null, "bid_ask_spread_percentage": 0.626936, "timestamp": "2024-12-04T07:41:59+00:00", "last_traded_at": "2024-12-04T07:41:59+00:00", "last_fetch_at": "2024-12-04T08:30:13+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4&tokenOut=JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN ", "token_info_url": null, "coin_id": "jupiter-exchange-solana", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "JUPYIWRYJFSKUPIHA7HKER8VUTAEFOSYBKEDZNSDVCN", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.3217498659, "volume": 95.194716, "converted_last": {"btc": 4.296e-05, "eth": 0.00111966, "usd": 4.15}, "converted_volume": {"btc": 0.00122752, "eth": 0.03199517, "usd": 118.67}, "trust_score": null, "bid_ask_spread_percentage": 0.699253, "timestamp": "2024-12-04T05:25:54+00:00", "last_traded_at": "2024-12-04T05:25:54+00:00", "last_fetch_at": "2024-12-04T08:29:47+00:00", "is_anomaly": true, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-exchange-solana", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "BOBAM3U8QMQZHY1HWATNVZE9DLXVKGKYK3TD3T8MLVA", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.0004773917052, "volume": 1626673.159248, "converted_last": {"btc": 4.316e-05, "eth": 0.00113609, "usd": 4.13}, "converted_volume": {"btc": 0.03351087, "eth": 0.88218483, "usd": 3205.89}, "trust_score": "green", "bid_ask_spread_percentage": 0.609172, "timestamp": "2024-12-03T01:15:33+00:00", "last_traded_at": "2024-12-03T01:15:33+00:00", "last_fetch_at": "2024-12-03T01:33:26+00:00", "is_anomaly": false, "is_stale": true, "trade_url": null, "token_info_url": null, "coin_id": "boba-oppa", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "9GP2KCY3WA1CTVYWQK75GUQXUHFREOMQYDHLTCTCQILA", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.006287634595, "volume": 254.398716, "converted_last": {"btc": 4.232e-05, "eth": 0.00114663, "usd": 4.12}, "converted_volume": {"btc": 0.01072177, "eth": 0.29051652, "usd": 1043.53}, "trust_score": "green", "bid_ask_spread_percentage": 0.671168, "timestamp": "2024-11-29T21:35:46+00:00", "last_traded_at": "2024-11-29T21:35:46+00:00", "last_fetch_at": "2024-11-29T22:25:30+00:00", "is_anomaly": false, "is_stale": true, "trade_url": "https://www.orca.so/?tokenIn=9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "binance-coin-wormhole"}, {"base": "BOBAM3U8QMQZHY1HWATNVZE9DLXVKGKYK3TD3T8MLVA", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.0004845572622, "volume": 326460.794983, "converted_last": {"btc": 4.314e-05, "eth": 0.00114111, "usd": 4.11}, "converted_volume": {"btc": 0.00681788, "eth": 0.18034434, "usd": 650.05}, "trust_score": "yellow", "bid_ask_spread_percentage": 0.62198, "timestamp": "2024-12-02T17:13:48+00:00", "last_traded_at": "2024-12-02T17:13:48+00:00", "last_fetch_at": "2024-12-02T17:37:34+00:00", "is_anomaly": false, "is_stale": true, "trade_url": null, "token_info_url": null, "coin_id": "boba-oppa", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 4.1528498954, "volume": 1.056337, "converted_last": {"btc": 4.305e-05, "eth": 0.00112134, "usd": 4.15}, "converted_volume": {"btc": 4.548e-05, "eth": 0.00118451, "usd": 4.39}, "trust_score": "red", "bid_ask_spread_percentage": 0.695878, "timestamp": "2024-11-30T06:57:40+00:00", "last_traded_at": "2024-11-30T06:57:40+00:00", "last_fetch_at": "2024-12-01T06:51:58+00:00", "is_anomaly": false, "is_stale": true, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "BLZEEUZUBVQFHJ8ADCCFPJVPVCICYVMH3HKJMRU8KUJA", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.0001230748859, "volume": 58490.043456104, "converted_last": {"btc": 4.331e-05, "eth": 0.0011721, "usd": 4.1}, "converted_volume": {"btc": 0.00030989, "eth": 0.00838613, "usd": 29.34}, "trust_score": "red", "bid_ask_spread_percentage": 21.761077, "timestamp": "2024-11-27T14:39:46+00:00", "last_traded_at": "2024-11-27T14:39:46+00:00", "last_fetch_at": "2024-11-27T14:39:46+00:00", "is_anomaly": false, "is_stale": true, "trade_url": null, "token_info_url": null, "coin_id": "solblaze", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "ES9VMFRZACERMJFRF4H2FYD4KCONKY11MCCE8BENWNYB", "market": {"name": "Invariant", "identifier": "invariant", "has_trading_incentive": false}, "last": 4.116836741770752, "volume": 64686.91834295372, "converted_last": {"btc": 4.33e-05, "eth": 0.00113729, "usd": 4.12}, "converted_volume": {"btc": 2.783547, "eth": 73.118, "usd": 264769}, "trust_score": null, "bid_ask_spread_percentage": null, "timestamp": "2024-11-28T11:43:54+00:00", "last_traded_at": "2024-11-28T11:43:54+00:00", "last_fetch_at": "2024-11-28T11:43:54+00:00", "is_anomaly": false, "is_stale": true, "trade_url": "https://invariant.app/exchange/27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4/ES9VMFRZACERMJFRF4H2FYD4KCONKY11MCCE8BENWNYB", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "tether"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "7VFCXTUXX5WJV5JADK17DUJ4KSGAU7UTNKJ4B963VOXS", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 0.001158161443, "volume": 45687.667287, "converted_last": {"btc": 4.367e-05, "eth": 0.00116066, "usd": 4.1}, "converted_volume": {"btc": 1.958987, "eth": 52.064, "usd": 183859}, "trust_score": "green", "bid_ask_spread_percentage": 0.606701, "timestamp": "2024-12-03T14:36:53+00:00", "last_traded_at": "2024-12-03T14:36:53+00:00", "last_fetch_at": "2024-12-03T14:36:53+00:00", "is_anomaly": true, "is_stale": true, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "ethereum-wormhole"}, {"base": "JTOJTOMEPA8BEP8AUQC6EXT5FRIJWFFMWQX2V2F9MCL", "target": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 0.8243470809, "volume": 69.967862625, "converted_last": {"btc": 4.296e-05, "eth": 0.00115175, "usd": 4.12}, "converted_volume": {"btc": 0.00248003, "eth": 0.06649018, "usd": 238.02}, "trust_score": "green", "bid_ask_spread_percentage": 0.804562, "timestamp": "2024-12-03T15:43:27+00:00", "last_traded_at": "2024-12-03T15:43:27+00:00", "last_fetch_at": "2024-12-03T15:43:27+00:00", "is_anomaly": true, "is_stale": true, "trade_url": "https://www.orca.so/?tokenIn=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4&tokenOut=jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL ", "token_info_url": null, "coin_id": "jito-governance-token", "target_coin_id": "jupiter-perpetuals-liquidity-provider-token"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 2.8485559567, "volume": 183.469739, "converted_last": {"btc": 2.959e-05, "eth": 0.00078376, "usd": 2.85}, "converted_volume": {"btc": 0.00460263, "eth": 0.12190816, "usd": 443.16}, "trust_score": null, "bid_ask_spread_percentage": -200.829453, "timestamp": "2024-11-28T02:43:29+00:00", "last_traded_at": "2024-11-28T02:43:29+00:00", "last_fetch_at": "2024-11-28T02:43:29+00:00", "is_anomaly": true, "is_stale": true, "trade_url": "https://www.orca.so/?tokenIn=EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}]} \ No newline at end of file diff --git a/tokens/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.json b/tokens/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.json new file mode 100644 index 0000000..225e9be --- /dev/null +++ b/tokens/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v.json @@ -0,0 +1 @@ +{"id": "usd-coin", "symbol": "usdc", "name": "USDC", "web_slug": "usdc", "asset_platform_id": "ethereum", "platforms": {"ethereum": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "polkadot": "1337", "zksync": "0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4", "optimistic-ethereum": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", "tron": "TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8", "stellar": "USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN", "near-protocol": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "hedera-hashgraph": "0.0.456858", "base": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "arbitrum-one": "0xaf88d065e77c8cc2239327c5edb3a432268e5831", "polygon-pos": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", "sui": "0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC", "algorand": "31566704", "avalanche": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", "solana": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", "celo": "0xceba9300f2b948710d2653dd7b07f33a8b32118c"}, "detail_platforms": {"ethereum": {"decimal_place": 6, "contract_address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"}, "polkadot": {"decimal_place": 6, "contract_address": "1337"}, "zksync": {"decimal_place": 6, "contract_address": "0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4"}, "optimistic-ethereum": {"decimal_place": 6, "contract_address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85"}, "tron": {"decimal_place": 6, "contract_address": "TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8"}, "stellar": {"decimal_place": null, "contract_address": "USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN"}, "near-protocol": {"decimal_place": 6, "contract_address": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1"}, "hedera-hashgraph": {"decimal_place": 6, "contract_address": "0.0.456858"}, "base": {"decimal_place": 6, "contract_address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913"}, "arbitrum-one": {"decimal_place": 6, "contract_address": "0xaf88d065e77c8cc2239327c5edb3a432268e5831"}, "polygon-pos": {"decimal_place": 6, "contract_address": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359"}, "sui": {"decimal_place": 6, "contract_address": "0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC"}, "algorand": {"decimal_place": 5, "contract_address": "31566704"}, "avalanche": {"decimal_place": 6, "contract_address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e"}, "solana": {"decimal_place": 6, "contract_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"}, "celo": {"decimal_place": 6, "contract_address": "0xceba9300f2b948710d2653dd7b07f33a8b32118c"}}, "block_time_in_minutes": 0, "hashing_algorithm": null, "categories": ["Stablecoins", "USD Stablecoin", "Polkadot Ecosystem", "BNB Chain Ecosystem", "Cosmos Ecosystem", "Solana Ecosystem", "Avalanche Ecosystem", "Polygon Ecosystem", "Near Protocol Ecosystem", "Gnosis Chain Ecosystem", "Fantom Ecosystem", "Harmony Ecosystem", "Arbitrum Ecosystem", "Celo Ecosystem", "Moonriver Ecosystem", "Moonbeam Ecosystem", "Ethereum Ecosystem", "Cronos Ecosystem", "Algorand Ecosystem", "Metis Ecosystem", "Arbitrum Nova Ecosystem", "Optimism Ecosystem", "Velas Ecosystem", "Canto Ecosystem", "ZkSync Ecosystem", "Sui Ecosystem", "Mantle Ecosystem", "Base Ecosystem", "Rollux Ecosystem", "Ronin Ecosystem", "Tron Ecosystem", "Neon Ecosystem", "Osmosis Ecosystem", "Hedera Ecosystem", "Kava Ecosystem", "Stellar Ecosystem", "Flow Ecosystem", "Fiat-backed Stablecoin"], "preview_listing": false, "public_notice": "USD Coin (USDC) has rebranded to USDC (USDC). For more information, please refer to this announcement from the Circle Blog.", "additional_notices": [], "localization": {"en": "USDC", "de": "", "es": "", "fr": "", "it": "", "pl": "", "ro": "", "hu": "", "nl": "", "pt": "", "sv": "", "vi": "", "tr": "", "ru": "", "ja": "USD\u30b3\u30a4\u30f3", "zh": "", "zh-tw": "", "ko": "", "ar": "", "th": "", "id": "", "cs": "", "da": "", "el": "", "hi": "", "no": "", "sk": "", "uk": "", "he": "", "fi": "", "bg": "", "hr": "", "lt": "", "sl": ""}, "description": {"en": "USDC is a fully collateralized US dollar stablecoin. USDC is the bridge between dollars and trading on cryptocurrency exchanges. The technology behind CENTRE makes it possible to exchange value between people, businesses and financial institutions just like email between mail services and texts between SMS providers. We believe by removing artificial economic borders, we can create a more inclusive global economy.", "de": "", "es": "", "fr": "", "it": "", "pl": "", "ro": "", "hu": "", "nl": "", "pt": "", "sv": "", "vi": "", "tr": "", "ru": "", "ja": "", "zh": "", "zh-tw": "", "ko": "", "ar": "", "th": "", "id": "", "cs": "", "da": "", "el": "", "hi": "", "no": "", "sk": "", "uk": "", "he": "", "fi": "", "bg": "", "hr": "", "lt": "", "sl": ""}, "links": {"homepage": ["https://www.circle.com/en/usdc", "", ""], "whitepaper": "", "blockchain_site": ["https://etherscan.io/token/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "https://platform.arkhamintelligence.com/explorer/token/usd-coin", "https://bscscan.com/token/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", "https://nearblocks.io/token/17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1", "https://ethplorer.io/address/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "https://basescan.org/token/0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "https://arbiscan.io/token/0xaf88d065e77c8cc2239327c5edb3a432268e5831", "https://binplorer.com/address/0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", "https://explorer.kava.io/token/0xfa9343c3897324496a05fc75abed6bac29f8a40f", "https://ftmscan.com/token/0x04068da6c83afcfa0e13ba15a6696662335d5b75"], "official_forum_url": ["", "", ""], "chat_url": ["https://discord.com/invite/buildoncircle", "", ""], "announcement_url": ["https://medium.com/centre-blog", "https://blog.circle.com/2018/09/26/introducing-usd-coin/"], "twitter_screen_name": "circle", "facebook_username": "", "bitcointalk_thread_identifier": null, "telegram_channel_identifier": "", "subreddit_url": "https://www.reddit.com", "repos_url": {"github": ["https://github.com/centrehq/centre-tokens"], "bitbucket": []}}, "image": {"thumb": "https://coin-images.coingecko.com/coins/images/6319/thumb/usdc.png?1696506694", "small": "https://coin-images.coingecko.com/coins/images/6319/small/usdc.png?1696506694", "large": "https://coin-images.coingecko.com/coins/images/6319/large/usdc.png?1696506694"}, "country_origin": "US", "genesis_date": null, "contract_address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "sentiment_votes_up_percentage": 75.0, "sentiment_votes_down_percentage": 25.0, "watchlist_portfolio_users": 153987, "market_cap_rank": 9, "market_data": {"current_price": {"aed": 3.67, "ars": 1011.37, "aud": 1.56, "bch": 0.00172971, "bdt": 119.65, "bhd": 0.376825, "bmd": 0.999655, "bnb": 0.00130216, "brl": 6.04, "btc": 1.034e-05, "cad": 1.41, "chf": 0.88675, "clp": 972.66, "cny": 7.27, "czk": 23.91, "dkk": 7.1, "dot": 0.09950686, "eos": 0.70394616, "eth": 0.00026952, "eur": 0.951735, "gbp": 0.788382, "gel": 2.87, "hkd": 7.78, "huf": 394.87, "idr": 15919.07, "ils": 3.61, "inr": 84.68, "jpy": 150.36, "krw": 1412.48, "kwd": 0.30742, "lkr": 290.94, "ltc": 0.00763591, "mmk": 2097.28, "mxn": 20.35, "myr": 4.45, "ngn": 1655.99, "nok": 11.05, "nzd": 1.71, "php": 58.2, "pkr": 278.19, "pln": 4.09, "rub": 105.96, "sar": 3.76, "sek": 11.01, "sgd": 1.34, "thb": 34.31, "try": 34.75, "twd": 32.41, "uah": 41.8, "usd": 0.999655, "vef": 0.100095, "vnd": 25398, "xag": 0.03237643, "xau": 0.00037884, "xdr": 0.76158, "xlm": 1.943873, "xrp": 0.37858475, "yfi": 0.00010685, "zar": 18.16, "bits": 10.34, "link": 0.0410585, "sats": 1034.31}, "total_value_locked": null, "mcap_to_tvl_ratio": null, "fdv_to_tvl_ratio": null, "roi": null, "ath": {"aed": 4.31, "ars": 1016.16, "aud": 1.83, "bch": 0.01345435, "bdt": 121.08, "bhd": 0.442094, "bmd": 1.17, "bnb": 0.25455702, "brl": 6.2, "btc": 0.00033582, "cad": 1.61, "chf": 1.2, "clp": 1057.99, "cny": 8.09, "czk": 27.1, "dkk": 7.88, "dot": 0.34808619, "eos": 2.485214, "eth": 0.01282697, "eur": 1.059, "gbp": 0.96424, "gel": 2.88, "hkd": 9.2, "huf": 455.32, "idr": 17341.09, "ils": 4.26, "inr": 87.19, "jpy": 162.28, "krw": 1466.8, "kwd": 0.356866, "lkr": 380.81, "ltc": 0.04751509, "mmk": 3266.05, "mxn": 25.72, "myr": 4.95, "ngn": 1701.26, "nok": 12.06, "nzd": 1.88, "php": 61.66, "pkr": 309.03, "pln": 5.09, "rub": 155.25, "sar": 4.4, "sek": 11.61, "sgd": 1.47, "thb": 38.98, "try": 34.89, "twd": 36.3, "uah": 41.94, "usd": 1.17, "vef": 291403, "vnd": 27332, "xag": 0.086151, "xau": 0.00093093, "xdr": 0.842866, "xlm": 37.482414, "xrp": 9.1105, "yfi": 0.00126639, "zar": 19.92, "bits": 313.39, "link": 4.9423, "sats": 31339}, "ath_change_percentage": {"aed": -14.71847, "ars": -0.4165, "aud": -14.94217, "bch": -87.14024, "bdt": -1.12914, "bhd": -14.72012, "bmd": -14.71311, "bnb": -99.48641, "brl": -2.52249, "btc": -96.9216, "cad": -12.46372, "chf": -25.83417, "clp": -8.01765, "cny": -10.14159, "czk": -11.72905, "dkk": -9.90755, "dot": -71.3864, "eos": -71.8107, "eth": -97.89897, "eur": -10.16022, "gbp": -18.2899, "gel": -0.46179, "hkd": -15.41496, "huf": -13.29235, "idr": -8.15378, "ils": -15.04686, "inr": -2.83966, "jpy": -7.27891, "krw": -3.70565, "kwd": -13.81178, "lkr": -23.56212, "ltc": -84.01449, "mmk": -35.75275, "mxn": -20.86965, "myr": -10.20281, "ngn": -2.6114, "nok": -8.38491, "nzd": -9.0677, "php": -5.55378, "pkr": -9.93236, "pln": -19.63328, "rub": -33.00701, "sar": -14.54103, "sek": -5.13772, "sgd": -8.61888, "thb": -12.00876, "try": -0.35238, "twd": -10.70571, "uah": -0.28193, "usd": -14.71311, "vef": -99.99997, "vnd": -7.02968, "xag": -62.43448, "xau": -59.31356, "xdr": -9.59793, "xlm": -94.81959, "xrp": -95.83103, "yfi": -91.60564, "zar": -8.8192, "bits": -96.70129, "link": -99.17182, "sats": -96.70129}, "ath_date": {"aed": "2019-05-08T00:40:28.300Z", "ars": "2024-12-03T14:51:09.371Z", "aud": "2020-03-13T02:35:16.858Z", "bch": "2018-12-15T16:04:56.312Z", "bdt": "2024-11-14T07:55:49.626Z", "bhd": "2019-05-08T00:40:28.300Z", "bmd": "2019-05-08T00:40:28.300Z", "bnb": "2018-12-08T12:49:29.078Z", "brl": "2024-11-06T15:51:20.518Z", "btc": "2018-12-08T12:54:40.339Z", "cad": "2020-03-13T02:35:16.858Z", "chf": "2019-05-08T00:40:28.300Z", "clp": "2022-07-19T00:53:26.862Z", "cny": "2020-03-13T02:35:16.858Z", "czk": "2020-03-13T02:35:16.858Z", "dkk": "2022-09-27T16:25:08.674Z", "dot": "2020-08-22T00:00:00.000Z", "eos": "2024-11-04T22:02:22.954Z", "eth": "2018-12-08T12:49:29.078Z", "eur": "2022-09-27T16:25:08.674Z", "gbp": "2022-09-26T01:00:46.182Z", "gel": "2024-06-12T12:36:34.408Z", "hkd": "2019-05-08T00:40:28.300Z", "huf": "2022-10-13T12:54:39.018Z", "idr": "2018-10-15T13:29:31.772Z", "ils": "2020-03-13T02:35:16.858Z", "inr": "2020-03-13T02:35:16.858Z", "jpy": "2024-07-11T01:41:27.699Z", "krw": "2022-09-30T02:11:16.560Z", "kwd": "2019-05-08T00:40:28.300Z", "lkr": "2022-05-12T07:24:27.813Z", "ltc": "2018-12-08T12:49:29.078Z", "mmk": "2024-07-19T13:40:23.116Z", "mxn": "2020-04-06T05:20:12.159Z", "myr": "2020-03-13T02:35:16.858Z", "ngn": "2024-11-10T04:55:40.405Z", "nok": "2020-03-19T09:32:58.419Z", "nzd": "2020-03-13T02:35:16.858Z", "php": "2018-10-15T13:29:31.772Z", "pkr": "2023-09-06T17:10:41.513Z", "pln": "2022-10-13T12:54:39.018Z", "rub": "2022-03-07T17:44:50.584Z", "sar": "2019-05-08T00:40:28.300Z", "sek": "2022-10-13T12:54:39.018Z", "sgd": "2022-05-12T07:24:27.813Z", "thb": "2022-09-30T02:11:16.560Z", "try": "2024-11-18T15:41:01.634Z", "twd": "2019-05-08T00:40:28.300Z", "uah": "2024-12-03T14:51:09.371Z", "usd": "2019-05-08T00:40:28.300Z", "vef": "2019-05-08T00:40:28.300Z", "vnd": "2019-05-08T00:40:28.300Z", "xag": "2020-03-16T12:07:54.295Z", "xau": "2018-10-15T13:29:31.772Z", "xdr": "2019-05-08T00:40:28.300Z", "xlm": "2020-03-13T02:27:51.989Z", "xrp": "2020-03-13T02:27:51.989Z", "yfi": "2020-07-18T00:00:00.000Z", "zar": "2023-06-01T07:50:09.345Z", "bits": "2018-12-16T00:00:00.000Z", "link": "2018-12-16T00:00:00.000Z", "sats": "2018-12-16T00:00:00.000Z"}, "atl": {"aed": 3.22, "ars": 35.1, "aud": 1.15, "bch": 0.00061874, "bdt": 75.64, "bhd": 0.330818, "bmd": 0.877647, "bnb": 0.00129513, "brl": 3.66, "btc": 1.005e-05, "cad": 1.079, "chf": 0.803831, "clp": 641.06, "cny": 5.74, "czk": 18.6, "dkk": 5.43, "dot": 0.01824728, "eos": 0.06823362, "eth": 0.00020588, "eur": 0.730265, "gbp": 0.629869, "gel": 2.59, "hkd": 6.89, "huf": 255.57, "idr": 12829.05, "ils": 2.91, "inr": 65.31, "jpy": 97.05, "krw": 1008.25, "kwd": 0.268173, "lkr": 169.86, "ltc": 0.0024386, "mmk": 1262.08, "mxn": 16.18, "myr": 3.69, "ngn": 306.14, "nok": 7.39, "nzd": 1.24, "php": 42.68, "pkr": 122.98, "pln": 3.3, "rub": 50.72, "sar": 3.29, "sek": 7.43, "sgd": 1.18, "thb": 28.03, "try": 5.12, "twd": 24.94, "uah": 23.13, "usd": 0.877647, "vef": 0.087879, "vnd": 20544, "xag": 0.0286767, "xau": 0.00035759, "xdr": 0.618198, "xlm": 1.266586, "xrp": 0.35587346, "yfi": 1.103e-05, "zar": 12.52, "bits": 10.05, "link": 0.01893714, "sats": 1004.86}, "atl_change_percentage": {"aed": 13.96914, "ars": 2782.71286, "aud": 35.03894, "bch": 179.63366, "bdt": 58.26047, "bhd": 13.96497, "bmd": 13.95983, "bnb": 0.94647, "brl": 65.14261, "btc": 2.87972, "cad": 30.46757, "chf": 10.32299, "clp": 51.80477, "cny": 26.66843, "czk": 28.59373, "dkk": 30.69907, "dot": 445.83478, "eos": 926.71468, "eth": 30.89799, "eur": 30.30666, "gbp": 25.08651, "gel": 10.94639, "hkd": 13.00474, "huf": 54.47525, "idr": 24.14896, "ils": 24.12885, "inr": 29.71436, "jpy": 55.02958, "krw": 40.08832, "kwd": 14.69322, "lkr": 71.37278, "ltc": 211.47058, "mmk": 66.26131, "mxn": 25.807, "myr": 20.69346, "ngn": 441.19462, "nok": 49.43429, "nzd": 37.64732, "php": 36.46858, "pkr": 126.31797, "pln": 23.92849, "rub": 105.04848, "sar": 14.06717, "sek": 48.15708, "sgd": 13.6239, "thb": 22.36162, "try": 578.59718, "twd": 29.96787, "uah": 80.78298, "usd": 13.95983, "vef": 13.95983, "vnd": 23.6878, "xag": 12.85494, "xau": 5.92161, "xdr": 23.25641, "xlm": 53.30516, "xrp": 6.72722, "yfi": 864.19739, "zar": 45.0121, "bits": 2.87972, "link": 116.14285, "sats": 2.87972}, "atl_date": {"aed": "2023-03-11T08:02:13.981Z", "ars": "2018-11-05T00:00:00.000Z", "aud": "2021-05-19T13:14:05.611Z", "bch": "2021-05-12T00:48:59.373Z", "bdt": "2021-05-19T13:14:05.611Z", "bhd": "2023-03-11T08:02:13.981Z", "bmd": "2023-03-11T08:02:13.981Z", "bnb": "2024-12-04T02:00:50.703Z", "brl": "2019-01-10T00:00:00.000Z", "btc": "2024-11-22T19:36:15.316Z", "cad": "2021-05-19T13:14:05.611Z", "chf": "2021-05-19T13:14:05.611Z", "clp": "2021-05-19T13:14:05.611Z", "cny": "2021-05-19T13:14:05.611Z", "czk": "2021-05-19T13:14:05.611Z", "dkk": "2021-05-19T13:14:05.611Z", "dot": "2021-11-04T14:03:20.601Z", "eos": "2021-05-12T00:19:38.267Z", "eth": "2021-11-10T16:24:27.522Z", "eur": "2021-05-19T13:14:05.611Z", "gbp": "2021-05-19T13:14:05.611Z", "gel": "2024-02-28T17:35:55.970Z", "hkd": "2023-03-11T08:02:13.981Z", "huf": "2021-05-19T13:14:05.611Z", "idr": "2021-05-19T13:14:05.611Z", "ils": "2021-05-19T13:14:05.611Z", "inr": "2021-05-19T13:14:05.611Z", "jpy": "2021-05-19T13:14:05.611Z", "krw": "2021-05-19T13:14:05.611Z", "kwd": "2021-05-19T13:14:05.611Z", "lkr": "2018-10-07T00:00:00.000Z", "ltc": "2021-05-10T02:59:49.794Z", "mmk": "2020-08-02T04:44:57.506Z", "mxn": "2024-04-13T20:11:41.378Z", "myr": "2021-05-19T13:14:05.611Z", "ngn": "2019-08-27T00:00:00.000Z", "nok": "2021-05-19T13:14:05.611Z", "nzd": "2021-05-19T13:14:05.611Z", "php": "2021-05-19T13:14:05.611Z", "pkr": "2018-10-07T00:00:00.000Z", "pln": "2021-05-19T13:14:05.611Z", "rub": "2022-06-29T08:44:56.399Z", "sar": "2023-03-11T08:02:13.981Z", "sek": "2021-05-19T13:14:05.611Z", "sgd": "2023-03-11T08:02:13.981Z", "thb": "2021-05-19T13:14:05.611Z", "try": "2018-12-30T00:00:00.000Z", "twd": "2021-05-19T13:14:05.611Z", "uah": "2019-12-26T19:59:45.264Z", "usd": "2023-03-11T08:02:13.981Z", "vef": "2023-03-11T08:02:13.981Z", "vnd": "2021-05-19T13:14:05.611Z", "xag": "2024-10-22T21:11:00.184Z", "xau": "2024-10-30T20:10:35.316Z", "xdr": "2021-05-19T13:14:05.611Z", "xlm": "2021-05-16T09:54:34.066Z", "xrp": "2024-12-03T12:00:47.430Z", "yfi": "2021-05-12T00:31:55.487Z", "zar": "2021-05-19T13:14:05.611Z", "bits": "2024-11-22T19:36:15.316Z", "link": "2021-05-10T00:18:26.781Z", "sats": "2024-11-22T19:36:15.316Z"}, "market_cap": {"aed": 147498444549, "ars": 40632403020821, "aud": 62473409032, "bch": 69473243, "bdt": 4806655513321, "bhd": 15137771046, "bmd": 40158032249, "bnb": 52314265, "brl": 242662941471, "btc": 415403, "cad": 56518856326, "chf": 35615797379, "clp": 39073765378351, "cny": 291892673206, "czk": 960919306138, "dkk": 285090866335, "dot": 3994377513, "eos": 28111096311, "eth": 10827621, "eur": 38225185999, "gbp": 31655331923, "gel": 115253552555, "hkd": 312602371227, "huf": 15860513665690, "idr": 639416270855231, "ils": 145263409106, "inr": 3401439022786, "jpy": 6040939326335, "krw": 56726981873594, "kwd": 12349639025, "lkr": 11687510257380, "ltc": 306020458, "mmk": 84251551658561, "mxn": 817303259831, "myr": 178622927444, "ngn": 66524189902529, "nok": 443840226148, "nzd": 68644172583, "php": 2337739811122, "pkr": 11175595339705, "pln": 164351967524, "rub": 4251794511691, "sar": 150902480311, "sek": 442418591648, "sgd": 54025323629, "thb": 1377962639579, "try": 1395890791496, "twd": 1301983642563, "uah": 1679298112645, "usd": 40158032249, "vef": 4021023769, "vnd": 1020275275437714, "xag": 1300349211, "xau": 15219091, "xdr": 30594115763, "xlm": 77998505582, "xrp": 15185127520, "yfi": 4283452, "zar": 729567035082, "bits": 415402534196, "link": 1647780863, "sats": 41540253419569}, "market_cap_rank": 9, "fully_diluted_valuation": {"aed": 147505743394, "ars": 40634413683378, "aud": 62476500479, "bch": 69476681, "bdt": 4806893366894, "bhd": 15138520127, "bmd": 40160019438, "bnb": 52316853, "brl": 242674949457, "btc": 415423, "cad": 56521653117, "chf": 35617559799, "clp": 39075698912948, "cny": 291907117285, "czk": 960966856476, "dkk": 285104973833, "dot": 3994575172, "eos": 28112487366, "eth": 10828156, "eur": 38227077542, "gbp": 31656898362, "gel": 115259255786, "hkd": 312617840110, "huf": 15861298510754, "idr": 639447911867297, "ils": 145270597352, "inr": 3401607340325, "jpy": 6041238257474, "krw": 56729788963747, "kwd": 12350250138, "lkr": 11688088604648, "ltc": 306035601, "mmk": 84255720780437, "mxn": 817343703441, "myr": 178631766459, "ngn": 66527481799828, "nok": 443862189233, "nzd": 68647569386, "php": 2337855492341, "pkr": 11176148355264, "pln": 164360100352, "rub": 4252004908404, "sar": 150909947602, "sek": 442440484385, "sgd": 54027997030, "thb": 1378030826978, "try": 1395959866056, "twd": 1302048070202, "uah": 1679381211394, "usd": 40160019438, "vef": 4021222746, "vnd": 1020325762958555, "xag": 1300413557, "xau": 15219844, "xdr": 30595629689, "xlm": 78002365277, "xrp": 15185878944, "yfi": 4283664, "zar": 729603137134, "bits": 415423090064, "link": 1647862402, "sats": 41542309006390}, "market_cap_fdv_ratio": 1.0, "total_volume": {"aed": 50456561615, "ars": 13898289947169, "aud": 21373418457, "bch": 23769759, "bdt": 1644270289149, "bhd": 5178358862, "bmd": 13737339636, "bnb": 17894429, "brl": 82991389941, "btc": 142136, "cad": 19322969406, "chf": 12185789548, "clp": 13366431465442, "cny": 99852600609, "czk": 328641810437, "dkk": 97541238266, "dot": 1367431884, "eos": 9673688654, "eth": 3703775, "eur": 13078826523, "gbp": 10834007853, "gel": 39426164754, "hkd": 106934886058, "huf": 5426362708913, "idr": 218761197023230, "ils": 49666170041, "inr": 1163688158516, "jpy": 2066303772889, "krw": 19410353296670, "kwd": 4224589109, "lkr": 3998086781354, "ltc": 104933323, "mmk": 28820938555495, "mxn": 279685682270, "myr": 61103686699, "ngn": 22756727346754, "nok": 151801751650, "nzd": 23488858863, "php": 799829125604, "pkr": 3822969906976, "pln": 56229307688, "rub": 1456136914558, "sar": 51621020946, "sek": 151360370927, "sgd": 18481612303, "thb": 471499825906, "try": 477504444535, "twd": 445419472870, "uah": 574457642241, "usd": 13737339636, "vef": 1375519818, "vnd": 349017797823469, "xag": 444919736, "xau": 5206040, "xdr": 10465696040, "xlm": 26712868971, "xrp": 5202544094, "yfi": 1468400, "zar": 249532702577, "bits": 142135785249, "link": 564229483, "sats": 14213578524892}, "high_24h": {"aed": 3.69, "ars": 1016.16, "aud": 1.56, "bch": 0.00190825, "bdt": 120.04, "bhd": 0.378389, "bmd": 1.004, "bnb": 0.00158844, "brl": 6.11, "btc": 1.065e-05, "cad": 1.41, "chf": 0.889606, "clp": 979.7, "cny": 7.31, "czk": 24.06, "dkk": 7.12, "dot": 0.10664783, "eos": 0.93443653, "eth": 0.00028301, "eur": 0.954875, "gbp": 0.792923, "gel": 2.88, "hkd": 7.81, "huf": 395.96, "idr": 16008.19, "ils": 3.64, "inr": 85.03, "jpy": 150.59, "krw": 1447.09, "kwd": 0.308457, "lkr": 291.89, "ltc": 0.00802682, "mmk": 2106.08, "mxn": 20.47, "myr": 4.49, "ngn": 1671.05, "nok": 11.11, "nzd": 1.71, "php": 58.79, "pkr": 279.1, "pln": 4.1, "rub": 107.25, "sar": 3.77, "sek": 11.05, "sgd": 1.35, "thb": 34.55, "try": 34.88, "twd": 32.79, "uah": 41.94, "usd": 1.004, "vef": 0.100516, "vnd": 25502, "xag": 0.03260231, "xau": 0.00037989, "xdr": 0.76418, "xlm": 2.006239, "xrp": 0.41526328, "yfi": 0.00011525, "zar": 18.2, "bits": 10.65, "link": 0.04323013, "sats": 1064.91}, "low_24h": {"aed": 3.66, "ars": 1007.5, "aud": 1.54, "bch": 0.00169389, "bdt": 119.19, "bhd": 0.375415, "bmd": 0.995793, "bnb": 0.00129513, "brl": 6.02, "btc": 1.034e-05, "cad": 1.4, "chf": 0.881579, "clp": 968.91, "cny": 7.25, "czk": 23.85, "dkk": 7.07, "dot": 0.09930752, "eos": 0.65832334, "eth": 0.00026893, "eur": 0.947993, "gbp": 0.786098, "gel": 2.84, "hkd": 7.75, "huf": 392.58, "idr": 15892.0, "ils": 3.61, "inr": 84.32, "jpy": 148.55, "krw": 1399.55, "kwd": 0.306144, "lkr": 289.81, "ltc": 0.00747191, "mmk": 2089.17, "mxn": 20.25, "myr": 4.44, "ngn": 1649.59, "nok": 11.02, "nzd": 1.69, "php": 58.15, "pkr": 277.12, "pln": 4.07, "rub": 103.98, "sar": 3.74, "sek": 10.96, "sgd": 1.34, "thb": 34.22, "try": 34.6, "twd": 32.36, "uah": 41.64, "usd": 0.995793, "vef": 0.099709, "vnd": 25296, "xag": 0.03207821, "xau": 0.00037624, "xdr": 0.758638, "xlm": 1.812846, "xrp": 0.35587346, "yfi": 0.00010616, "zar": 18.06, "bits": 10.34, "link": 0.0384738, "sats": 1033.58}, "price_change_24h": 0.00025882, "price_change_percentage_24h": 0.0259, "price_change_percentage_7d": -0.00772, "price_change_percentage_14d": -0.1268, "price_change_percentage_30d": -0.02028, "price_change_percentage_60d": -0.04031, "price_change_percentage_200d": -0.01296, "price_change_percentage_1y": -0.09642, "market_cap_change_24h": 279004050, "market_cap_change_percentage_24h": 0.69963, "price_change_24h_in_currency": {"aed": 0.00088068, "ars": 0.47785, "aud": 0.01719654, "bch": -0.00013870005638499, "bdt": -0.1697593246225182, "bhd": 6.958e-05, "bmd": 0.00025882, "bnb": -0.000233960561287077, "brl": -0.017924596498120948, "btc": -1.27246699762e-07, "cad": 0.0052651, "chf": 0.00103111, "clp": -5.504685949518148, "cny": -0.010411268613669478, "czk": -0.08030584203389424, "dkk": 0.00839978, "dot": -0.001124446985214772, "eos": -0.1826046291854848, "eth": -6.39267048455e-06, "eur": 0.0012608, "gbp": 0.00067084, "gel": 0.02572771, "hkd": 0.00313606, "huf": 0.451585, "idr": -20.377577584193205, "ils": -0.02459181802360133, "inr": 0.04038962, "jpy": 0.506656, "krw": 11.56, "kwd": 0.00014855, "lkr": -0.5514050716781753, "ltc": -2.4113607157585e-05, "mmk": 0.543009, "mxn": -0.006500391261806016, "myr": -0.016338186043488356, "ngn": -8.455874404421593, "nok": -0.021188399459699525, "nzd": 0.01497076, "php": -0.3467138818677924, "pkr": -0.4514198507797573, "pln": 0.01697278, "rub": -0.9253962096104402, "sar": 0.00163918, "sek": 0.0383203, "sgd": 0.00124766, "thb": -0.02259854817447149, "try": 0.01841985, "twd": -0.11553503253557552, "uah": -0.020321947471131807, "usd": 0.00025882, "vef": 2.592e-05, "vnd": 6.58, "xag": 1.101e-05, "xau": 3.97905e-07, "xdr": -0.001556757871254977, "xlm": 0.0858996, "xrp": -0.00027101719852074, "yfi": -4.32375167498e-06, "zar": 0.08317, "bits": -0.12724669976179648, "link": 0.00172413, "sats": -12.724669976179484}, "price_change_percentage_1h_in_currency": {"aed": -0.10752, "ars": -0.11129, "aud": 0.07219, "bch": -0.62824, "bdt": -0.10739, "bhd": -0.10739, "bmd": -0.10739, "bnb": -1.43909, "brl": -0.18999, "btc": -0.06397, "cad": -0.08643, "chf": -0.048, "clp": -0.10739, "cny": -0.16507, "czk": -0.1026, "dkk": -0.02293, "dot": -0.1441, "eos": 0.34389, "eth": -0.12584, "eur": -0.01854, "gbp": -0.09218, "gel": -0.10739, "hkd": -0.09603, "huf": -0.05047, "idr": -0.22766, "ils": 0.02007, "inr": -0.08319, "jpy": -0.07508, "krw": -0.05894, "kwd": -0.09796, "lkr": -0.10739, "ltc": 0.85579, "mmk": -0.10739, "mxn": 0.03738, "myr": -0.08492, "ngn": -0.10739, "nok": -0.22125, "nzd": 0.03015, "php": -0.28123, "pkr": -0.10739, "pln": 0.0607, "rub": 0.84094, "sar": -0.09901, "sek": -0.02975, "sgd": -0.03925, "thb": -0.0132, "try": -0.10796, "twd": -0.04419, "uah": -0.10739, "usd": -0.10739, "vef": -0.10739, "vnd": -0.10739, "xag": 0.26759, "xau": 0.13041, "xdr": -0.10739, "xlm": -0.01926, "xrp": -0.44053, "yfi": -0.92043, "zar": 0.19369, "bits": -0.06397, "link": 0.59275, "sats": -0.06397}, "price_change_percentage_24h_in_currency": {"aed": 0.02399, "ars": 0.04727, "aud": 1.11802, "bch": -7.42345, "bdt": -0.14168, "bhd": 0.01847, "bmd": 0.0259, "bnb": -15.23059, "brl": -0.29593, "btc": -1.21531, "cad": 0.37585, "chf": 0.11641, "clp": -0.56275, "cny": -0.14308, "czk": -0.33467, "dkk": 0.11848, "dot": -1.11739, "eos": -20.5972, "eth": -2.31691, "eur": 0.13265, "gbp": 0.08516, "gel": 0.90486, "hkd": 0.04032, "huf": 0.11449, "idr": -0.12784, "ils": -0.67583, "inr": 0.04772, "jpy": 0.33809, "krw": 0.82486, "kwd": 0.04835, "lkr": -0.18917, "ltc": -0.3148, "mmk": 0.0259, "mxn": -0.03193, "myr": -0.3661, "ngn": -0.50803, "nok": -0.19144, "nzd": 0.8836, "php": -0.59217, "pkr": -0.162, "pln": 0.41653, "rub": -0.86577, "sar": 0.04366, "sek": 0.34913, "sgd": 0.09286, "thb": -0.06582, "try": 0.05304, "twd": -0.35518, "uah": -0.04859, "usd": 0.0259, "vef": 0.0259, "vnd": 0.0259, "xag": 0.03402, "xau": 0.10514, "xdr": -0.20399, "xlm": 4.6233, "xrp": -0.07154, "yfi": -3.88904, "zar": 0.46014, "bits": -1.21531, "link": 4.38328, "sats": -1.21531}, "price_change_percentage_7d_in_currency": {"aed": -0.00894, "ars": 0.43518, "aud": 0.95101, "bch": -12.87703, "bdt": -0.09702, "bhd": -0.00745, "bmd": -0.00772, "bnb": -19.1425, "brl": 3.91045, "btc": -3.30535, "cad": 0.06634, "chf": 0.35726, "clp": -0.4884, "cny": 0.309, "czk": -0.58694, "dkk": -0.05486, "dot": -17.82302, "eos": -43.90408, "eth": -7.76806, "eur": -0.04247, "gbp": -0.67984, "gel": 5.12009, "hkd": 0.03321, "huf": 1.0321, "idr": 0.30195, "ils": -0.79512, "inr": 0.32499, "jpy": -0.86966, "krw": 1.34005, "kwd": -0.02462, "lkr": -0.31801, "ltc": -27.28144, "mmk": -0.00772, "mxn": -1.65277, "myr": 0.09355, "ngn": -1.84164, "nok": -0.78397, "nzd": 0.77492, "php": 3.48209, "pkr": -0.10315, "pln": -0.14177, "rub": -1.60665, "sar": 0.0263, "sek": 0.49211, "sgd": 0.05595, "thb": -0.877, "try": 0.27124, "twd": -0.41315, "uah": 0.38274, "usd": -0.00772, "vef": -0.00772, "vnd": 0.00498, "xag": -0.63921, "xau": 0.32585, "xdr": -0.66487, "xlm": -9.29007, "xrp": -46.67981, "yfi": -22.12373, "zar": 0.33575, "bits": -3.30535, "link": -25.54175, "sats": -3.30535}, "price_change_percentage_14d_in_currency": {"aed": -0.12762, "ars": 0.86348, "aud": 1.31439, "bch": -23.93148, "bdt": 0.39249, "bhd": -0.12177, "bmd": -0.1268, "bnb": -20.07344, "brl": 4.51661, "btc": -3.86523, "cad": 0.59926, "chf": 0.1446, "clp": 0.04903, "cny": 0.23934, "czk": -0.10906, "dkk": 0.47847, "dot": -41.68577, "eos": -55.02955, "eth": -16.09476, "eur": 0.4998, "gbp": -0.03909, "gel": 4.42116, "hkd": -0.09906, "huf": 1.85338, "idr": 0.18177, "ils": -3.64929, "inr": 0.26862, "jpy": -3.52048, "krw": 1.25489, "kwd": -0.10536, "lkr": 0.26326, "ltc": -34.58107, "mmk": -0.1268, "mxn": 1.00379, "myr": -0.58499, "ngn": -1.2151, "nok": 0.26412, "nzd": 0.62631, "php": -1.39863, "pkr": 0.37288, "pln": -0.26128, "rub": 5.44326, "sar": -0.03196, "sek": 0.51385, "sgd": 0.24441, "thb": -1.10645, "try": 0.54196, "twd": -0.37875, "uah": 1.5238, "usd": -0.1268, "vef": -0.1268, "vnd": -0.1395, "xag": -0.01356, "xau": -0.75271, "xdr": 0.38908, "xlm": -54.59525, "xrp": -58.943, "yfi": -33.01138, "zar": 0.16266, "bits": -3.86523, "link": -40.55431, "sats": -3.86523}, "price_change_percentage_30d_in_currency": {"aed": -0.02137, "ars": 2.14611, "aud": 2.5503, "bch": -42.17765, "bdt": 0.4067, "bhd": -0.00197, "bmd": -0.02028, "bnb": -27.18699, "brl": 5.95691, "btc": -29.00917, "cad": 1.07643, "chf": 2.55357, "clp": 1.47843, "cny": 2.41299, "czk": 2.98093, "dkk": 3.75526, "dot": -62.42107, "eos": -70.9541, "eth": -33.64323, "eur": 3.74785, "gbp": 2.36421, "gel": 4.91474, "hkd": 0.12189, "huf": 5.53429, "idr": 1.07743, "ils": -3.62141, "inr": 0.68928, "jpy": -1.13926, "krw": 2.87053, "kwd": 0.35009, "lkr": -0.41255, "ltc": -49.29894, "mmk": -0.02028, "mxn": 1.14284, "myr": 1.68282, "ngn": 0.92097, "nok": 0.65908, "nzd": 2.36908, "php": -0.31946, "pkr": 0.45549, "pln": 2.45924, "rub": 7.59081, "sar": 0.03067, "sek": 3.2003, "sgd": 2.095, "thb": 1.54479, "try": 1.1764, "twd": 1.68737, "uah": 1.42332, "usd": -0.02028, "vef": -0.02028, "vnd": 0.3213, "xag": 5.83749, "xau": 3.6842, "xdr": 1.60087, "xlm": -82.32875, "xrp": -80.84619, "yfi": -51.39919, "zar": 3.59043, "bits": -29.00917, "link": -56.29894, "sats": -29.00917}, "price_change_percentage_60d_in_currency": {"aed": -0.04167, "ars": 4.17374, "aud": 6.09817, "bch": -43.93826, "bdt": -0.28806, "bhd": 0.03001, "bmd": -0.04031, "bnb": -26.72686, "brl": 10.65664, "btc": -35.77254, "cad": 3.52575, "chf": 3.40217, "clp": 5.1376, "cny": 3.06641, "czk": 3.50553, "dkk": 4.49917, "dot": -58.3456, "eos": -66.59569, "eth": -34.86052, "eur": 4.51352, "gbp": 3.47696, "gel": 4.98968, "hkd": 0.18556, "huf": 7.94123, "idr": 1.58359, "ils": -5.29327, "inr": 0.77209, "jpy": 1.09565, "krw": 4.86487, "kwd": 0.42077, "lkr": -1.35129, "ltc": -50.18351, "mmk": -0.04031, "mxn": 5.51831, "myr": 5.36035, "ngn": 1.11207, "nok": 3.65653, "nzd": 5.28459, "php": 2.74888, "pkr": -0.1658, "pln": 4.06258, "rub": 11.61052, "sar": -0.00212, "sek": 6.20353, "sgd": 3.16153, "thb": 3.16929, "try": 1.43217, "twd": 0.38694, "uah": 1.11578, "usd": -0.04031, "vef": -0.04031, "vnd": 2.53738, "xag": 4.23637, "xau": 0.52202, "xdr": 2.43587, "xlm": -82.04489, "xrp": -79.80456, "yfi": -46.58252, "zar": 3.85949, "bits": -35.77254, "link": -53.90007, "sats": -35.77254}, "price_change_percentage_200d_in_currency": {"aed": -0.0116, "ars": 14.22052, "aud": 4.26042, "bch": -16.06797, "bdt": 2.20905, "bhd": 0.18504, "bmd": -0.01296, "bnb": -24.61458, "brl": 18.33246, "btc": -30.79619, "cad": 3.28031, "chf": -2.42802, "clp": 9.18654, "cny": 0.6113, "czk": 5.29161, "dkk": 3.42228, "dot": -28.42529, "eos": -42.31901, "eth": -16.3948, "eur": 3.56749, "gbp": 0.18546, "gel": 4.35011, "hkd": -0.24747, "huf": 10.9011, "idr": -0.26306, "ils": -2.41904, "inr": 1.67866, "jpy": -3.37261, "krw": 4.31116, "kwd": 0.09184, "lkr": -2.8978, "ltc": -35.58424, "mmk": -0.10069, "mxn": 22.56833, "myr": -5.12165, "ngn": 12.67655, "nok": 2.86966, "nzd": 4.86033, "php": 0.86623, "pkr": -0.08821, "pln": 4.39035, "rub": 16.47721, "sar": 0.18078, "sek": 2.79704, "sgd": -0.05338, "thb": -5.32427, "try": 7.93306, "twd": 0.74579, "uah": 5.97456, "usd": -0.01296, "vef": -0.01296, "vnd": -0.17808, "xag": 1.77775, "xau": -8.53066, "xdr": 0.61967, "xlm": -78.88219, "xrp": -80.20319, "yfi": -24.68197, "zar": -0.08745, "bits": -30.79619, "link": -33.04967, "sats": -30.79619}, "price_change_percentage_1y_in_currency": {"aed": -0.08146, "ars": 180.05731, "aud": 3.20963, "bch": -56.91363, "bdt": 8.21946, "bhd": -0.0951, "bmd": -0.09642, "bnb": -69.81474, "brl": 23.66256, "btc": -57.18148, "cad": 3.82717, "chf": 1.2294, "clp": 11.72709, "cny": 2.51848, "czk": 6.7403, "dkk": 3.23663, "dot": -43.82479, "eos": -49.29679, "eth": -39.47736, "eur": 3.20259, "gbp": -0.20335, "gel": 6.1938, "hkd": -0.47711, "huf": 12.93462, "idr": 2.87066, "ils": -2.88222, "inr": 1.54295, "jpy": 2.27084, "krw": 8.03197, "kwd": -0.48249, "lkr": -11.62757, "ltc": -43.86796, "mmk": -0.41984, "mxn": 17.92815, "myr": -4.60045, "ngn": 109.62162, "nok": 2.9208, "nzd": 5.48983, "php": 5.09298, "pkr": -1.50582, "pln": 2.50357, "rub": 16.71259, "sar": 0.07517, "sek": 5.49402, "sgd": 0.61902, "thb": -1.78614, "try": 20.04787, "twd": 3.20923, "uah": 14.2982, "usd": -0.09642, "vef": -0.09642, "vnd": 4.71347, "xag": -18.38635, "xau": -21.65775, "xdr": 1.06621, "xlm": -75.89094, "xrp": -76.03609, "yfi": -6.03349, "zar": -2.99771, "bits": -57.18148, "link": -33.92175, "sats": -57.18148}, "market_cap_change_24h_in_currency": {"aed": 1021976392, "ars": 294760453977, "aud": 1097231770, "bch": -5101402.349610448, "bdt": 25384870178, "bhd": 104055359, "bmd": 279004050, "bnb": -8986365.10022074, "brl": 964127361, "btc": -2440.4037192884716, "cad": 620502257, "chf": 272849122, "clp": 41767737938, "cny": 1533468886, "czk": 3431814877, "dkk": 2193825772, "dot": -21381923.951556206, "eos": -7269964293.315342, "eth": -183801.4732394945, "eur": 298276109, "gbp": 223200324, "gel": 1797717328, "hkd": 2218790235, "huf": 121907960111, "idr": 3382385526525, "ils": 65582231, "inr": 24028812369, "jpy": 61193700046, "krw": 825902352174, "kwd": 88552652, "lkr": 56192181604, "ltc": 363645, "mmk": 585350496289, "mxn": 4915612673, "myr": 543127020, "ngn": 107662387893, "nok": 2205312023, "nzd": 1036538254, "php": 1426864304, "pkr": 56756952617, "pln": 1755199798, "rub": -13342207771.728027, "sar": 1075017293, "sek": 4439906465, "sgd": 409724892, "thb": 7958504818, "try": 10087702375, "twd": 4001032730, "uah": 10424389552, "usd": 279004050, "vef": 27936675, "vnd": 7088517980646, "xag": 8867281, "xau": 118099, "xdr": 142569588, "xlm": 3879945594, "xrp": 67875268, "yfi": -154568.14263028838, "zar": 8313256149, "bits": -2440403719.288452, "link": 78434501, "sats": -244040371928.84375}, "market_cap_change_percentage_24h_in_currency": {"aed": 0.69771, "ars": 0.73073, "aud": 1.78772, "bch": -6.84067, "bdt": 0.53092, "bhd": 0.69215, "bmd": 0.69963, "bnb": -14.6595, "brl": 0.3989, "btc": -0.58405, "cad": 1.11005, "chf": 0.772, "clp": 0.10701, "cny": 0.52813, "czk": 0.35842, "dkk": 0.77549, "dot": -0.53245, "eos": -20.54762, "eth": -1.66919, "eur": 0.78645, "gbp": 0.7101, "gel": 1.58451, "hkd": 0.71485, "huf": 0.77458, "idr": 0.53179, "ils": 0.04517, "inr": 0.71146, "jpy": 1.02335, "krw": 1.47744, "kwd": 0.72223, "lkr": 0.48311, "ltc": 0.11897, "mmk": 0.69963, "mxn": 0.60508, "myr": 0.30499, "ngn": 0.1621, "nok": 0.49935, "nzd": 1.53317, "php": 0.06107, "pkr": 0.51046, "pln": 1.07948, "rub": -0.31282, "sar": 0.7175, "sek": 1.01373, "sgd": 0.76419, "thb": 0.58091, "try": 0.72793, "twd": 0.30825, "uah": 0.62464, "usd": 0.69963, "vef": 0.69963, "vnd": 0.69963, "xag": 0.6866, "xau": 0.78206, "xdr": 0.46819, "xlm": 5.23478, "xrp": 0.44899, "yfi": -3.48282, "zar": 1.15261, "bits": -0.58405, "link": 4.99791, "sats": -0.58405}, "total_supply": 40158313453.42052, "max_supply": null, "max_supply_infinite": true, "circulating_supply": 40156326349.14361, "last_updated": "2024-12-04T08:32:23.934Z"}, "community_data": {"facebook_likes": null, "twitter_followers": 189274, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 0, "reddit_accounts_active_48h": 0, "telegram_channel_user_count": null}, "developer_data": {"forks": 338, "stars": 553, "subscribers": 34, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 264, "pull_request_contributors": 23, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0, "last_4_weeks_commit_activity_series": []}, "status_updates": [], "last_updated": "2024-12-04T08:32:23.934Z", "tickers": [{"base": "BTC", "target": "USDC", "market": {"name": "DigiFinex", "identifier": "digifinex", "has_trading_incentive": false}, "last": 96638.2, "volume": 7683.05473, "converted_last": {"btc": 1.035e-05, "eth": 0.00026967, "usd": 1.0}, "converted_volume": {"btc": 7682, "eth": 200223, "usd": 742629309}, "trust_score": "green", "bid_ask_spread_percentage": 0.01001, "timestamp": "2024-12-04T08:30:21+00:00", "last_traded_at": "2024-12-04T08:30:21+00:00", "last_fetch_at": "2024-12-04T08:30:21+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.digifinex.com/en-ww/trade/USDC/BTC", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 96667.75, "volume": 5558.87919, "converted_last": {"btc": 1.034e-05, "eth": 0.00026963, "usd": 1.0}, "converted_volume": {"btc": 5486, "eth": 142987, "usd": 530339853}, "trust_score": "green", "bid_ask_spread_percentage": 0.01001, "timestamp": "2024-12-04T08:28:40+00:00", "last_traded_at": "2024-12-04T08:28:40+00:00", "last_fetch_at": "2024-12-04T08:30:06+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/BTC_USDC?ref=37754157", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "USDC", "target": "USDT", "market": {"name": "Bybit", "identifier": "bybit_spot", "has_trading_incentive": false}, "last": 0.9994, "volume": 317562040.52, "converted_last": {"btc": 1.035e-05, "eth": 0.00026966, "usd": 1.0}, "converted_volume": {"btc": 3286, "eth": 85654, "usd": 317679785}, "trust_score": "green", "bid_ask_spread_percentage": 0.010005, "timestamp": "2024-12-04T08:29:36+00:00", "last_traded_at": "2024-12-04T08:29:36+00:00", "last_fetch_at": "2024-12-04T08:29:36+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.bybit.com/trade/spot/USDC/USDT", "token_info_url": null, "coin_id": "usd-coin", "target_coin_id": "tether"}, {"base": "ETH", "target": "USDC", "market": {"name": "DigiFinex", "identifier": "digifinex", "has_trading_incentive": false}, "last": 3710.98, "volume": 104204.587, "converted_last": {"btc": 1.035e-05, "eth": 0.00026967, "usd": 1.0}, "converted_volume": {"btc": 4001, "eth": 104281, "usd": 386780684}, "trust_score": "green", "bid_ask_spread_percentage": 0.014041, "timestamp": "2024-12-04T08:30:21+00:00", "last_traded_at": "2024-12-04T08:30:21+00:00", "last_fetch_at": "2024-12-04T08:30:21+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.digifinex.com/en-ww/trade/USDC/ETH", "token_info_url": null, "coin_id": "ethereum", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "Bybit", "identifier": "bybit_spot", "has_trading_incentive": false}, "last": 96672.3, "volume": 2293.304131, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 2263, "eth": 58996, "usd": 218809201}, "trust_score": "green", "bid_ask_spread_percentage": 0.010021, "timestamp": "2024-12-04T08:28:33+00:00", "last_traded_at": "2024-12-04T08:28:33+00:00", "last_fetch_at": "2024-12-04T08:29:37+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.bybit.com/trade/spot/BTC/USDC", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "XRP", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 2.6685, "volume": 127502120.0, "converted_last": {"btc": 1.034e-05, "eth": 0.00026979, "usd": 1.0}, "converted_volume": {"btc": 3381, "eth": 88199, "usd": 326930630}, "trust_score": "green", "bid_ask_spread_percentage": 0.017563, "timestamp": "2024-12-04T08:24:42+00:00", "last_traded_at": "2024-12-04T08:24:42+00:00", "last_fetch_at": "2024-12-04T08:24:42+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/XRP_USDC?ref=37754157", "token_info_url": null, "coin_id": "ripple", "target_coin_id": "usd-coin"}, {"base": "ETH", "target": "USDC", "market": {"name": "Bybit", "identifier": "bybit_spot", "has_trading_incentive": false}, "last": 3711.0, "volume": 38944.23704, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 1457, "eth": 37981, "usd": 140864187}, "trust_score": "green", "bid_ask_spread_percentage": 0.010269, "timestamp": "2024-12-04T08:28:33+00:00", "last_traded_at": "2024-12-04T08:28:33+00:00", "last_fetch_at": "2024-12-04T08:29:36+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.bybit.com/trade/spot/ETH/USDC", "token_info_url": null, "coin_id": "ethereum", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "OKX", "identifier": "okex", "has_trading_incentive": false}, "last": 96651.9, "volume": 1043.25879205, "converted_last": {"btc": 1.034e-05, "eth": 0.00026963, "usd": 1.0}, "converted_volume": {"btc": 1030, "eth": 26845, "usd": 99568666}, "trust_score": "green", "bid_ask_spread_percentage": 0.010103, "timestamp": "2024-12-04T08:29:37+00:00", "last_traded_at": "2024-12-04T08:29:37+00:00", "last_fetch_at": "2024-12-04T08:30:06+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.okx.com/trade-spot/btc-usdc", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "USDC", "target": "USDT", "market": {"name": "OKX", "identifier": "okex", "has_trading_incentive": false}, "last": 0.9993, "volume": 92223702.800114, "converted_last": {"btc": 1.034e-05, "eth": 0.00026963, "usd": 1.0}, "converted_volume": {"btc": 954.558, "eth": 24881, "usd": 92279534}, "trust_score": "green", "bid_ask_spread_percentage": 0.010006, "timestamp": "2024-12-04T08:29:37+00:00", "last_traded_at": "2024-12-04T08:29:37+00:00", "last_fetch_at": "2024-12-04T08:29:37+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.okx.com/trade-spot/usdc-usdt", "token_info_url": null, "coin_id": "usd-coin", "target_coin_id": "tether"}, {"base": "SOL", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 235.98, "volume": 516226.883, "converted_last": {"btc": 1.034e-05, "eth": 0.00026963, "usd": 1.0}, "converted_volume": {"btc": 1232, "eth": 32115, "usd": 119116233}, "trust_score": "green", "bid_ask_spread_percentage": 0.014238, "timestamp": "2024-12-04T08:30:09+00:00", "last_traded_at": "2024-12-04T08:30:09+00:00", "last_fetch_at": "2024-12-04T08:30:09+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/SOL_USDC?ref=37754157", "token_info_url": null, "coin_id": "solana", "target_coin_id": "usd-coin"}, {"base": "ETH", "target": "USDC", "market": {"name": "OKX", "identifier": "okex", "has_trading_incentive": false}, "last": 3710.61, "volume": 22576.043155, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 844.818, "eth": 22020, "usd": 81670735}, "trust_score": "green", "bid_ask_spread_percentage": 0.01027, "timestamp": "2024-12-04T08:29:37+00:00", "last_traded_at": "2024-12-04T08:29:37+00:00", "last_fetch_at": "2024-12-04T08:29:37+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.okx.com/trade-spot/eth-usdc", "token_info_url": null, "coin_id": "ethereum", "target_coin_id": "usd-coin"}, {"base": "BNB", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 769.58, "volume": 80233.998, "converted_last": {"btc": 1.035e-05, "eth": 0.00026989, "usd": 0.999883}, "converted_volume": {"btc": 589.376, "eth": 15375, "usd": 56962763}, "trust_score": "green", "bid_ask_spread_percentage": 0.013019, "timestamp": "2024-12-04T08:27:26+00:00", "last_traded_at": "2024-12-04T08:27:26+00:00", "last_fetch_at": "2024-12-04T08:27:26+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/BNB_USDC?ref=37754157", "token_info_url": null, "coin_id": "binancecoin", "target_coin_id": "usd-coin"}, {"base": "SOL", "target": "USDC", "market": {"name": "Bybit", "identifier": "bybit_spot", "has_trading_incentive": false}, "last": 236.0, "volume": 213190.948, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 506.35, "eth": 13198, "usd": 48950206}, "trust_score": "green", "bid_ask_spread_percentage": 0.014238, "timestamp": "2024-12-04T08:28:33+00:00", "last_traded_at": "2024-12-04T08:28:33+00:00", "last_fetch_at": "2024-12-04T08:29:36+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.bybit.com/trade/spot/SOL/USDC", "token_info_url": null, "coin_id": "solana", "target_coin_id": "usd-coin"}, {"base": "ADA", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 1.2293, "volume": 51654104.3, "converted_last": {"btc": 1.034e-05, "eth": 0.00026979, "usd": 1.0}, "converted_volume": {"btc": 651.177, "eth": 16985, "usd": 62958912}, "trust_score": "green", "bid_ask_spread_percentage": 0.018145, "timestamp": "2024-12-04T08:24:42+00:00", "last_traded_at": "2024-12-04T08:24:42+00:00", "last_fetch_at": "2024-12-04T08:24:42+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/ADA_USDC?ref=37754157", "token_info_url": null, "coin_id": "cardano", "target_coin_id": "usd-coin"}, {"base": "DOGE", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 0.4199, "volume": 102501766.0, "converted_last": {"btc": 1.035e-05, "eth": 0.00026989, "usd": 0.999883}, "converted_volume": {"btc": 432.862, "eth": 11292, "usd": 41835802}, "trust_score": "green", "bid_ask_spread_percentage": 0.012384, "timestamp": "2024-12-04T08:27:28+00:00", "last_traded_at": "2024-12-04T08:27:28+00:00", "last_fetch_at": "2024-12-04T08:27:28+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/DOGE_USDC?ref=37754157", "token_info_url": null, "coin_id": "dogecoin", "target_coin_id": "usd-coin"}, {"base": "ETH", "target": "USDC", "market": {"name": "Hotcoin", "identifier": "hotcoin_global", "has_trading_incentive": false}, "last": 3710.54, "volume": 33007.06, "converted_last": {"btc": 1.035e-05, "eth": 0.00026985, "usd": 0.99989}, "converted_volume": {"btc": 1267, "eth": 33049, "usd": 122460511}, "trust_score": "green", "bid_ask_spread_percentage": 0.037988, "timestamp": "2024-12-04T08:27:59+00:00", "last_traded_at": "2024-12-04T08:27:59+00:00", "last_fetch_at": "2024-12-04T08:27:59+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.hotcoin.com/currencyExchange/eth_usdc", "token_info_url": null, "coin_id": "ethereum", "target_coin_id": "usd-coin"}, {"base": "USDT", "target": "USDC", "market": {"name": "Coinbase Exchange", "identifier": "gdax", "has_trading_incentive": false}, "last": 1.0005, "volume": 59797935.43, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 618.907, "eth": 16132, "usd": 59831321}, "trust_score": "green", "bid_ask_spread_percentage": 0.019995, "timestamp": "2024-12-04T08:29:56+00:00", "last_traded_at": "2024-12-04T08:29:56+00:00", "last_fetch_at": "2024-12-04T08:29:56+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.coinbase.com/advanced-trade/spot/USDT-USDC", "token_info_url": null, "coin_id": "tether", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "Biconomy.com", "identifier": "biconomy", "has_trading_incentive": false}, "last": 96683.99, "volume": 356.15716, "converted_last": {"btc": 1.034e-05, "eth": 0.00026979, "usd": 1.0}, "converted_volume": {"btc": 351.516, "eth": 9169, "usd": 33986257}, "trust_score": "green", "bid_ask_spread_percentage": 0.011995, "timestamp": "2024-12-04T08:24:38+00:00", "last_traded_at": "2024-12-04T08:24:38+00:00", "last_fetch_at": "2024-12-04T08:24:38+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.biconomy.com/exchange/BTC_USDC", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "ETH", "target": "USDC", "market": {"name": "LBank", "identifier": "lbank", "has_trading_incentive": false}, "last": 3711.41, "volume": 8151.4448, "converted_last": {"btc": 1.035e-05, "eth": 0.00026967, "usd": 1.0}, "converted_volume": {"btc": 312.988, "eth": 8158, "usd": 30253864}, "trust_score": "green", "bid_ask_spread_percentage": 0.010269, "timestamp": "2024-12-04T08:28:48+00:00", "last_traded_at": "2024-12-04T08:28:48+00:00", "last_fetch_at": "2024-12-04T08:28:48+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.lbank.com/trade/eth_usdc", "token_info_url": null, "coin_id": "ethereum", "target_coin_id": "usd-coin"}, {"base": "XRP", "target": "USDC", "market": {"name": "OKX", "identifier": "okex", "has_trading_incentive": false}, "last": 2.6504, "volume": 19764704.1208, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 522.713, "eth": 13625, "usd": 50532001}, "trust_score": "green", "bid_ask_spread_percentage": 0.018904, "timestamp": "2024-12-04T08:29:37+00:00", "last_traded_at": "2024-12-04T08:29:37+00:00", "last_fetch_at": "2024-12-04T08:29:37+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.okx.com/trade-spot/xrp-usdc", "token_info_url": null, "coin_id": "ripple", "target_coin_id": "usd-coin"}, {"base": "FDUSD", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 0.999, "volume": 22684495.0, "converted_last": {"btc": 1.034e-05, "eth": 0.00026988, "usd": 0.999838}, "converted_volume": {"btc": 234.304, "eth": 6113, "usd": 22648049}, "trust_score": "green", "bid_ask_spread_percentage": 0.010009, "timestamp": "2024-12-04T08:26:39+00:00", "last_traded_at": "2024-12-04T08:26:39+00:00", "last_fetch_at": "2024-12-04T08:26:39+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/FDUSD_USDC?ref=37754157", "token_info_url": null, "coin_id": "first-digital-usd", "target_coin_id": "usd-coin"}, {"base": "XRP", "target": "USDC", "market": {"name": "Bybit", "identifier": "bybit_spot", "has_trading_incentive": false}, "last": 2.641, "volume": 32818440.07, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 865.718, "eth": 22565, "usd": 83691226}, "trust_score": "green", "bid_ask_spread_percentage": 0.037823, "timestamp": "2024-12-04T08:28:33+00:00", "last_traded_at": "2024-12-04T08:28:33+00:00", "last_fetch_at": "2024-12-04T08:29:36+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.bybit.com/trade/spot/XRP/USDC", "token_info_url": null, "coin_id": "ripple", "target_coin_id": "usd-coin"}, {"base": "BNB", "target": "USDC", "market": {"name": "Azbit", "identifier": "azbit", "has_trading_incentive": false}, "last": 763.8, "volume": 30360.257, "converted_last": {"btc": 1.033e-05, "eth": 0.00026892, "usd": 0.999869}, "converted_volume": {"btc": 219.505, "eth": 5716, "usd": 21251341}, "trust_score": "green", "bid_ask_spread_percentage": 0.013123, "timestamp": "2024-12-04T08:13:59+00:00", "last_traded_at": "2024-12-04T08:13:59+00:00", "last_fetch_at": "2024-12-04T08:13:59+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://azbit.com/exchange/BNB_USDC?referralCode=OH5QDS1", "token_info_url": null, "coin_id": "binancecoin", "target_coin_id": "usd-coin"}, {"base": "ETH", "target": "USDC", "market": {"name": "Azbit", "identifier": "azbit", "has_trading_incentive": false}, "last": 3709.8, "volume": 2755.756, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 103.202, "eth": 2690, "usd": 9976836}, "trust_score": "green", "bid_ask_spread_percentage": 0.010269, "timestamp": "2024-12-04T08:29:53+00:00", "last_traded_at": "2024-12-04T08:29:53+00:00", "last_fetch_at": "2024-12-04T08:29:53+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://azbit.com/exchange/ETH_USDC?referralCode=OH5QDS1", "token_info_url": null, "coin_id": "ethereum", "target_coin_id": "usd-coin"}, {"base": "EURC", "target": "USDC", "market": {"name": "Coinbase Exchange", "identifier": "gdax", "has_trading_incentive": false}, "last": 1.0508, "volume": 21329710.0, "converted_last": {"btc": 1.035e-05, "eth": 0.00026974, "usd": 0.999893}, "converted_volume": {"btc": 231.878, "eth": 6046, "usd": 22410867}, "trust_score": "green", "bid_ask_spread_percentage": 0.019031, "timestamp": "2024-12-04T08:28:35+00:00", "last_traded_at": "2024-12-04T08:28:35+00:00", "last_fetch_at": "2024-12-04T08:28:35+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.coinbase.com/advanced-trade/spot/EURC-USDC", "token_info_url": null, "coin_id": "euro-coin", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "Cube", "identifier": "cube", "has_trading_incentive": false}, "last": 96758.5, "volume": 264.34802, "converted_last": {"btc": 1.035e-05, "eth": 0.00026967, "usd": 1.0}, "converted_volume": {"btc": 260.983, "eth": 6803, "usd": 25226973}, "trust_score": "green", "bid_ask_spread_percentage": 0.024209, "timestamp": "2024-12-04T08:28:53+00:00", "last_traded_at": "2024-12-04T08:28:53+00:00", "last_fetch_at": "2024-12-04T08:28:53+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.cube.exchange/trade/BTCUSDC", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "USDT", "target": "USDC", "market": {"name": "OKX", "identifier": "okex", "has_trading_incentive": false}, "last": 1.0006, "volume": 18522377.0508, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 191.675, "eth": 4996, "usd": 18529699}, "trust_score": "green", "bid_ask_spread_percentage": 0.019993, "timestamp": "2024-12-04T08:29:39+00:00", "last_traded_at": "2024-12-04T08:29:39+00:00", "last_fetch_at": "2024-12-04T08:29:39+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.okx.com/trade-spot/usdt-usdc", "token_info_url": null, "coin_id": "tether", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "Bitget", "identifier": "bitget", "has_trading_incentive": false}, "last": 96650.32, "volume": 61.22344, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 60.532, "eth": 1578, "usd": 5851801}, "trust_score": "green", "bid_ask_spread_percentage": 0.01001, "timestamp": "2024-12-04T08:29:29+00:00", "last_traded_at": "2024-12-04T08:29:29+00:00", "last_fetch_at": "2024-12-04T08:29:29+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.bitget.com/spot/BTCUSDC", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "SO11111111111111111111111111111111111111112", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 235.9552921351, "volume": 2205283.06915378, "converted_last": {"btc": 1.035e-05, "eth": 0.00026966, "usd": 1.0}, "converted_volume": {"btc": 5242, "eth": 136627, "usd": 506728416}, "trust_score": "green", "bid_ask_spread_percentage": 0.602725, "timestamp": "2024-12-04T08:29:08+00:00", "last_traded_at": "2024-12-04T08:29:08+00:00", "last_fetch_at": "2024-12-04T08:29:08+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v&tokenOut=So11111111111111111111111111111111111111112 ", "token_info_url": null, "coin_id": "wrapped-solana", "target_coin_id": "usd-coin"}, {"base": "AVAX", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 54.6, "volume": 293595.64, "converted_last": {"btc": 1.034e-05, "eth": 0.00026963, "usd": 1.0}, "converted_volume": {"btc": 155.35, "eth": 4049, "usd": 15017991}, "trust_score": "green", "bid_ask_spread_percentage": 0.018365, "timestamp": "2024-12-04T08:30:09+00:00", "last_traded_at": "2024-12-04T08:30:09+00:00", "last_fetch_at": "2024-12-04T08:30:09+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/AVAX_USDC?ref=37754157", "token_info_url": null, "coin_id": "avalanche-2", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "WhiteBIT", "identifier": "whitebit", "has_trading_incentive": false}, "last": 96651.46, "volume": 163.886265, "converted_last": {"btc": 1.034e-05, "eth": 0.00026981, "usd": 1.0}, "converted_volume": {"btc": 163.842, "eth": 4274, "usd": 15839983}, "trust_score": "green", "bid_ask_spread_percentage": 0.022815, "timestamp": "2024-12-04T08:25:31+00:00", "last_traded_at": "2024-12-04T08:25:31+00:00", "last_fetch_at": "2024-12-04T08:25:31+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://whitebit.com/trade/BTC_USDC", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "SUI", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 3.7124, "volume": 4219386.9, "converted_last": {"btc": 1.034e-05, "eth": 0.00026963, "usd": 1.0}, "converted_volume": {"btc": 162.317, "eth": 4231, "usd": 15691491}, "trust_score": "green", "bid_ask_spread_percentage": 0.02153, "timestamp": "2024-12-04T08:30:09+00:00", "last_traded_at": "2024-12-04T08:30:09+00:00", "last_fetch_at": "2024-12-04T08:30:09+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/SUI_USDC?ref=37754157", "token_info_url": null, "coin_id": "sui", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "Gate.io", "identifier": "gate", "has_trading_incentive": false}, "last": 96642.04, "volume": 86.84019, "converted_last": {"btc": 1.035e-05, "eth": 0.00026967, "usd": 1.0}, "converted_volume": {"btc": 85.717, "eth": 2234, "usd": 8285570}, "trust_score": "green", "bid_ask_spread_percentage": 0.011628, "timestamp": "2024-12-04T08:28:52+00:00", "last_traded_at": "2024-12-04T08:28:52+00:00", "last_fetch_at": "2024-12-04T08:28:52+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.gate.io/trade/BTC_USDC", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "SOL", "target": "USDC", "market": {"name": "OKX", "identifier": "okex", "has_trading_incentive": false}, "last": 235.99, "volume": 46090.137593, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 109.114, "eth": 2844, "usd": 10548310}, "trust_score": "green", "bid_ask_spread_percentage": 0.016949, "timestamp": "2024-12-04T08:29:38+00:00", "last_traded_at": "2024-12-04T08:29:38+00:00", "last_fetch_at": "2024-12-04T08:29:38+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.okx.com/trade-spot/sol-usdc", "token_info_url": null, "coin_id": "solana", "target_coin_id": "usd-coin"}, {"base": "ETH", "target": "USDC", "market": {"name": "Slex", "identifier": "slex", "has_trading_incentive": false}, "last": 3704.57, "volume": 6874.5471, "converted_last": {"btc": 1.034e-05, "eth": 0.00026982, "usd": 0.999936}, "converted_volume": {"btc": 257.616, "eth": 6720, "usd": 24904142}, "trust_score": "green", "bid_ask_spread_percentage": 0.0399, "timestamp": "2024-12-04T08:25:58+00:00", "last_traded_at": "2024-12-04T08:25:58+00:00", "last_fetch_at": "2024-12-04T08:25:58+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://slex.io/trade/ethusdc", "token_info_url": null, "coin_id": "ethereum", "target_coin_id": "usd-coin"}, {"base": "USDE", "target": "USDC", "market": {"name": "Bybit", "identifier": "bybit_spot", "has_trading_incentive": false}, "last": 1.0013, "volume": 9527286.24, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 98.683, "eth": 2572, "usd": 9539969}, "trust_score": "green", "bid_ask_spread_percentage": 0.019987, "timestamp": "2024-12-04T08:28:38+00:00", "last_traded_at": "2024-12-04T08:28:38+00:00", "last_fetch_at": "2024-12-04T08:29:40+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.bybit.com/trade/spot/USDE/USDC", "token_info_url": null, "coin_id": "ethena-usde", "target_coin_id": "usd-coin"}, {"base": "SO11111111111111111111111111111111111111112", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Raydium (CLMM)", "identifier": "raydium-clmm", "has_trading_incentive": false}, "last": 235.9973545584, "volume": 1466040.49230001, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 3475, "eth": 90575, "usd": 335927947}, "trust_score": "green", "bid_ask_spread_percentage": 0.602773, "timestamp": "2024-12-04T08:29:25+00:00", "last_traded_at": "2024-12-04T08:29:25+00:00", "last_fetch_at": "2024-12-04T08:29:25+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://raydium.io/swap?inputCurrency=so11111111111111111111111111111111111111112&outputCurrency=epjfwdd5aufqssqem2qn1xzybapc8g4weggkzwytdt1v", "token_info_url": null, "coin_id": "wrapped-solana", "target_coin_id": "usd-coin"}, {"base": "XRP", "target": "USDC", "market": {"name": "WhiteBIT", "identifier": "whitebit", "has_trading_incentive": false}, "last": 2.65739, "volume": 16132789.6, "converted_last": {"btc": 1.034e-05, "eth": 0.00026988, "usd": 0.999838}, "converted_volume": {"btc": 443.449, "eth": 11570, "usd": 42864190}, "trust_score": "green", "bid_ask_spread_percentage": 0.080986, "timestamp": "2024-12-04T08:26:42+00:00", "last_traded_at": "2024-12-04T08:26:42+00:00", "last_fetch_at": "2024-12-04T08:26:42+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://whitebit.com/trade/XRP_USDC", "token_info_url": null, "coin_id": "ripple", "target_coin_id": "usd-coin"}, {"base": "POL", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 0.7132, "volume": 17087006.4, "converted_last": {"btc": 1.035e-05, "eth": 0.00026989, "usd": 0.999883}, "converted_volume": {"btc": 127.897, "eth": 3337, "usd": 12361166}, "trust_score": "green", "bid_ask_spread_percentage": 0.027984, "timestamp": "2024-12-04T08:27:30+00:00", "last_traded_at": "2024-12-04T08:27:30+00:00", "last_fetch_at": "2024-12-04T08:27:30+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/POL_USDC?ref=37754157", "token_info_url": null, "coin_id": "polygon-ecosystem-token", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "Kraken", "identifier": "kraken", "has_trading_incentive": false}, "last": 96647.85, "volume": 93.9065357, "converted_last": {"btc": 1.035e-05, "eth": 0.00026968, "usd": 1.0}, "converted_volume": {"btc": 93.907, "eth": 2448, "usd": 9078132}, "trust_score": "green", "bid_ask_spread_percentage": 0.027509, "timestamp": "2024-12-04T08:28:40+00:00", "last_traded_at": "2024-12-04T08:28:40+00:00", "last_fetch_at": "2024-12-04T08:30:05+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://pro.kraken.com/app/trade/BTC-USDC", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "LTC", "target": "USDC", "market": {"name": "Azbit", "identifier": "azbit", "has_trading_incentive": false}, "last": 131.21, "volume": 87484.2, "converted_last": {"btc": 1.034e-05, "eth": 0.00026979, "usd": 1.0}, "converted_volume": {"btc": 117.658, "eth": 3069, "usd": 11377368}, "trust_score": "green", "bid_ask_spread_percentage": 0.030225, "timestamp": "2024-12-04T08:23:41+00:00", "last_traded_at": "2024-12-04T08:23:41+00:00", "last_fetch_at": "2024-12-04T08:23:41+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://azbit.com/exchange/LTC_USDC?referralCode=OH5QDS1", "token_info_url": null, "coin_id": "litecoin", "target_coin_id": "usd-coin"}, {"base": "RUNE", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 6.997, "volume": 776468.0, "converted_last": {"btc": 1.034e-05, "eth": 0.00026979, "usd": 1.0}, "converted_volume": {"btc": 54.08, "eth": 1411, "usd": 5228759}, "trust_score": "green", "bid_ask_spread_percentage": 0.014316, "timestamp": "2024-12-04T08:24:44+00:00", "last_traded_at": "2024-12-04T08:24:44+00:00", "last_fetch_at": "2024-12-04T08:24:44+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/RUNE_USDC?ref=37754157", "token_info_url": null, "coin_id": "thorchain", "target_coin_id": "usd-coin"}, {"base": "DOGE", "target": "USDC", "market": {"name": "BingX", "identifier": "bingx", "has_trading_incentive": false}, "last": 0.41975, "volume": 17292666.20232, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 73.308, "eth": 1911, "usd": 7086880}, "trust_score": "green", "bid_ask_spread_percentage": 0.02145, "timestamp": "2024-12-04T08:29:45+00:00", "last_traded_at": "2024-12-04T08:29:45+00:00", "last_fetch_at": "2024-12-04T08:29:45+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://bingx.com/en-us/spot/DOGEUSDC", "token_info_url": null, "coin_id": "dogecoin", "target_coin_id": "usd-coin"}, {"base": "ETH", "target": "USDC", "market": {"name": "Bitget", "identifier": "bitget", "has_trading_incentive": false}, "last": 3711.16, "volume": 1369.0414, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 51.228, "eth": 1335, "usd": 4952382}, "trust_score": "green", "bid_ask_spread_percentage": 0.018858, "timestamp": "2024-12-04T08:29:30+00:00", "last_traded_at": "2024-12-04T08:29:30+00:00", "last_fetch_at": "2024-12-04T08:29:30+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.bitget.com/spot/ETHUSDC", "token_info_url": null, "coin_id": "ethereum", "target_coin_id": "usd-coin"}, {"base": "ETH", "target": "USDC", "market": {"name": "Kraken", "identifier": "kraken", "has_trading_incentive": false}, "last": 3711.39, "volume": 1111.15002372, "converted_last": {"btc": 1.035e-05, "eth": 0.00026969, "usd": 1.0}, "converted_volume": {"btc": 42.669455, "eth": 1112, "usd": 4124966}, "trust_score": "green", "bid_ask_spread_percentage": 0.014013, "timestamp": "2024-12-04T08:29:29+00:00", "last_traded_at": "2024-12-04T08:29:29+00:00", "last_fetch_at": "2024-12-04T08:29:29+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://pro.kraken.com/app/trade/ETH-USDC", "token_info_url": null, "coin_id": "ethereum", "target_coin_id": "usd-coin"}, {"base": "PEPE", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 2.083e-05, "volume": 702898235184.0, "converted_last": {"btc": 1.034e-05, "eth": 0.00026988, "usd": 0.999838}, "converted_volume": {"btc": 146.331, "eth": 3818, "usd": 14144498}, "trust_score": "green", "bid_ask_spread_percentage": 0.047551, "timestamp": "2024-12-04T08:26:38+00:00", "last_traded_at": "2024-12-04T08:26:38+00:00", "last_fetch_at": "2024-12-04T08:26:38+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/PEPE_USDC?ref=37754157", "token_info_url": null, "coin_id": "pepe", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "Deribit Spot", "identifier": "deribit_spot", "has_trading_incentive": false}, "last": 96612.0, "volume": 131.3168, "converted_last": {"btc": 1.034e-05, "eth": 0.00026958, "usd": 0.999851}, "converted_volume": {"btc": 130.006, "eth": 3389, "usd": 12568039}, "trust_score": "green", "bid_ask_spread_percentage": 0.047584, "timestamp": "2024-12-04T08:29:46+00:00", "last_traded_at": "2024-12-04T08:29:46+00:00", "last_fetch_at": "2024-12-04T08:29:46+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.deribit.com/spot/BTC_USDC", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "HTX", "identifier": "huobi", "has_trading_incentive": false}, "last": 96664.52, "volume": 103.0767677627347, "converted_last": {"btc": 1.035e-05, "eth": 0.00026966, "usd": 1.0}, "converted_volume": {"btc": 101.933, "eth": 2657, "usd": 9854153}, "trust_score": "green", "bid_ask_spread_percentage": 0.035725, "timestamp": "2024-12-04T08:29:11+00:00", "last_traded_at": "2024-12-04T08:29:11+00:00", "last_fetch_at": "2024-12-04T08:29:11+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.huobi.com/en-us/exchange/btc_usdc", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "ETH", "target": "USDC", "market": {"name": "PointPay", "identifier": "pointpay", "has_trading_incentive": false}, "last": 3705.71, "volume": 729.9525, "converted_last": {"btc": 1.034e-05, "eth": 0.0002698, "usd": 0.999964}, "converted_volume": {"btc": 27.337261, "eth": 713.092, "usd": 2642931}, "trust_score": "green", "bid_ask_spread_percentage": 0.011999, "timestamp": "2024-12-04T08:25:01+00:00", "last_traded_at": "2024-12-04T08:25:01+00:00", "last_fetch_at": "2024-12-04T08:25:01+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://exchange.pointpay.io/trade-classic/ETH_USDC", "token_info_url": null, "coin_id": "ethereum", "target_coin_id": "usd-coin"}, {"base": "ADA", "target": "USDC", "market": {"name": "WhiteBIT", "identifier": "whitebit", "has_trading_incentive": false}, "last": 1.2295, "volume": 6615453.4, "converted_last": {"btc": 1.034e-05, "eth": 0.00026981, "usd": 1.0}, "converted_volume": {"btc": 84.132, "eth": 2195, "usd": 8133770}, "trust_score": "green", "bid_ask_spread_percentage": 0.032595, "timestamp": "2024-12-04T08:25:31+00:00", "last_traded_at": "2024-12-04T08:25:31+00:00", "last_fetch_at": "2024-12-04T08:25:31+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://whitebit.com/trade/ADA_USDC", "token_info_url": null, "coin_id": "cardano", "target_coin_id": "usd-coin"}, {"base": "DOGE", "target": "USDC", "market": {"name": "OKX", "identifier": "okex", "has_trading_incentive": false}, "last": 0.41959, "volume": 10764045.1, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 45.386386, "eth": 1183, "usd": 4387619}, "trust_score": "green", "bid_ask_spread_percentage": 0.019067, "timestamp": "2024-12-04T08:29:38+00:00", "last_traded_at": "2024-12-04T08:29:38+00:00", "last_fetch_at": "2024-12-04T08:29:38+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.okx.com/trade-spot/doge-usdc", "token_info_url": null, "coin_id": "dogecoin", "target_coin_id": "usd-coin"}, {"base": "FET", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 1.935, "volume": 5745930.7, "converted_last": {"btc": 1.035e-05, "eth": 0.00026989, "usd": 0.999883}, "converted_volume": {"btc": 113.397, "eth": 2958, "usd": 10959721}, "trust_score": "green", "bid_ask_spread_percentage": 0.051706, "timestamp": "2024-12-04T08:27:29+00:00", "last_traded_at": "2024-12-04T08:27:29+00:00", "last_fetch_at": "2024-12-04T08:27:29+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/FET_USDC?ref=37754157", "token_info_url": null, "coin_id": "fetch-ai", "target_coin_id": "usd-coin"}, {"base": "0XCBB7C0000AB88B473B1F5AFD9EF808440EED33BF", "target": "0X833589FCD6EDB6E08F4C7C32D4F71B54BDA02913", "market": {"name": "Aerodrome SlipStream", "identifier": "aerodrome-slipstream", "has_trading_incentive": false}, "last": 96729.836737954, "volume": 1258.14027328, "converted_last": {"btc": 1.034e-05, "eth": 0.00026953, "usd": 0.999095}, "converted_volume": {"btc": 1242, "eth": 32377, "usd": 120016207}, "trust_score": "green", "bid_ask_spread_percentage": 0.602736, "timestamp": "2024-12-04T08:28:01+00:00", "last_traded_at": "2024-12-04T08:28:01+00:00", "last_fetch_at": "2024-12-04T08:28:01+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://aerodrome.finance/swap?from=0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf&to=0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "token_info_url": null, "coin_id": "coinbase-wrapped-btc", "target_coin_id": "usd-coin"}, {"base": "BNB", "target": "USDC", "market": {"name": "WEEX", "identifier": "weex", "has_trading_incentive": false}, "last": 766.88, "volume": 2608.463825, "converted_last": {"btc": 1.034e-05, "eth": 0.00026958, "usd": 0.999587}, "converted_volume": {"btc": 20.676787, "eth": 539.271, "usd": 1999553}, "trust_score": "green", "bid_ask_spread_percentage": 0.011305, "timestamp": "2024-12-04T08:22:46+00:00", "last_traded_at": "2024-12-04T08:22:46+00:00", "last_fetch_at": "2024-12-04T08:22:46+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.weex.com/trade/bnb_usdc", "token_info_url": null, "coin_id": "binancecoin", "target_coin_id": "usd-coin"}, {"base": "TRX", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 0.3784, "volume": 58856500.8, "converted_last": {"btc": 1.034e-05, "eth": 0.00026963, "usd": 1.0}, "converted_volume": {"btc": 208.166, "eth": 5426, "usd": 20123817}, "trust_score": "green", "bid_ask_spread_percentage": 0.104712, "timestamp": "2024-12-04T08:30:11+00:00", "last_traded_at": "2024-12-04T08:30:11+00:00", "last_fetch_at": "2024-12-04T08:30:11+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/TRX_USDC?ref=37754157", "token_info_url": null, "coin_id": "tron", "target_coin_id": "usd-coin"}, {"base": "ARB", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 1.1058, "volume": 6048400.8, "converted_last": {"btc": 1.034e-05, "eth": 0.00026979, "usd": 1.0}, "converted_volume": {"btc": 65.399, "eth": 1706, "usd": 6323052}, "trust_score": "green", "bid_ask_spread_percentage": 0.035737, "timestamp": "2024-12-04T08:24:42+00:00", "last_traded_at": "2024-12-04T08:24:42+00:00", "last_fetch_at": "2024-12-04T08:24:42+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/ARB_USDC?ref=37754157", "token_info_url": null, "coin_id": "arbitrum", "target_coin_id": "usd-coin"}, {"base": "WIF", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 3.333, "volume": 1569162.25, "converted_last": {"btc": 1.035e-05, "eth": 0.00026966, "usd": 1.0}, "converted_volume": {"btc": 52.022, "eth": 1356, "usd": 5029116}, "trust_score": "green", "bid_ask_spread_percentage": 0.02994, "timestamp": "2024-12-04T08:29:10+00:00", "last_traded_at": "2024-12-04T08:29:10+00:00", "last_fetch_at": "2024-12-04T08:29:10+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/WIF_USDC?ref=37754157", "token_info_url": null, "coin_id": "dogwifcoin", "target_coin_id": "usd-coin"}, {"base": "LTC", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 131.03, "volume": 43820.828, "converted_last": {"btc": 1.034e-05, "eth": 0.00026963, "usd": 1.0}, "converted_volume": {"btc": 58.759, "eth": 1532, "usd": 5680376}, "trust_score": "green", "bid_ask_spread_percentage": 0.038159, "timestamp": "2024-12-04T08:29:09+00:00", "last_traded_at": "2024-12-04T08:29:09+00:00", "last_fetch_at": "2024-12-04T08:30:09+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/LTC_USDC?ref=37754157", "token_info_url": null, "coin_id": "litecoin", "target_coin_id": "usd-coin"}, {"base": "SHIB", "target": "USDC", "market": {"name": "Bybit", "identifier": "bybit_spot", "has_trading_incentive": false}, "last": 3.04285e-05, "volume": 100903006948.9, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 30.178823, "eth": 786.606, "usd": 2917464}, "trust_score": "green", "bid_ask_spread_percentage": 0.020335, "timestamp": "2024-12-04T08:28:34+00:00", "last_traded_at": "2024-12-04T08:28:34+00:00", "last_fetch_at": "2024-12-04T08:29:38+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.bybit.com/trade/spot/SHIB/USDC", "token_info_url": null, "coin_id": "shiba-inu", "target_coin_id": "usd-coin"}, {"base": "BCH", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 578.8, "volume": 8985.86, "converted_last": {"btc": 1.034e-05, "eth": 0.00026979, "usd": 1.0}, "converted_volume": {"btc": 51.534, "eth": 1344, "usd": 4982577}, "trust_score": "green", "bid_ask_spread_percentage": 0.034507, "timestamp": "2024-12-04T08:24:44+00:00", "last_traded_at": "2024-12-04T08:24:44+00:00", "last_fetch_at": "2024-12-04T08:24:44+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/BCH_USDC?ref=37754157", "token_info_url": null, "coin_id": "bitcoin-cash", "target_coin_id": "usd-coin"}, {"base": "LINK", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 24.4, "volume": 484556.49, "converted_last": {"btc": 1.033e-05, "eth": 0.00026904, "usd": 0.999953}, "converted_volume": {"btc": 121.727, "eth": 3171, "usd": 11786812}, "trust_score": "green", "bid_ask_spread_percentage": 0.08316, "timestamp": "2024-12-04T08:15:30+00:00", "last_traded_at": "2024-12-04T08:15:30+00:00", "last_fetch_at": "2024-12-04T08:15:30+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/LINK_USDC?ref=37754157", "token_info_url": null, "coin_id": "chainlink", "target_coin_id": "usd-coin"}, {"base": "0XB31F66AA3C1E785363F0875A1B74E27B85FD66C7", "target": "0XB97EF9EF8734C71904D8002F8B6BC66DD9C48A6E", "market": {"name": "LFJ V2.1 (Avalanche)", "identifier": "traderjoe-v2-1-avalanche", "has_trading_incentive": false}, "last": 54.5242535439, "volume": 1564800.51144182, "converted_last": {"btc": 1.039e-05, "eth": 0.0002709, "usd": 1.004}, "converted_volume": {"btc": 826.373, "eth": 21557, "usd": 79886918}, "trust_score": "green", "bid_ask_spread_percentage": 0.602847, "timestamp": "2024-12-04T08:25:58+00:00", "last_traded_at": "2024-12-04T08:25:58+00:00", "last_fetch_at": "2024-12-04T08:25:58+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://lfj.gg/avalanche/trade?inputCurrency=0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7&outputCurrency=0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", "token_info_url": null, "coin_id": "wrapped-avax", "target_coin_id": "usd-coin"}, {"base": "FLOKI", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 0.00023065, "volume": 10012129812.0, "converted_last": {"btc": 1.035e-05, "eth": 0.00026966, "usd": 1.0}, "converted_volume": {"btc": 22.976776, "eth": 598.898, "usd": 2221224}, "trust_score": "green", "bid_ask_spread_percentage": 0.017282, "timestamp": "2024-12-04T08:29:10+00:00", "last_traded_at": "2024-12-04T08:29:10+00:00", "last_fetch_at": "2024-12-04T08:29:10+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/FLOKI_USDC?ref=37754157", "token_info_url": null, "coin_id": "floki", "target_coin_id": "usd-coin"}, {"base": "HBAR", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 0.32785, "volume": 74416532.0, "converted_last": {"btc": 1.034e-05, "eth": 0.00026979, "usd": 1.0}, "converted_volume": {"btc": 258.375, "eth": 6739, "usd": 24980920}, "trust_score": "green", "bid_ask_spread_percentage": 0.194075, "timestamp": "2024-12-04T08:24:46+00:00", "last_traded_at": "2024-12-04T08:24:46+00:00", "last_fetch_at": "2024-12-04T08:24:46+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/HBAR_USDC?ref=37754157", "token_info_url": null, "coin_id": "hedera-hashgraph", "target_coin_id": "usd-coin"}, {"base": "SUI", "target": "USDC", "market": {"name": "Bybit", "identifier": "bybit_spot", "has_trading_incentive": false}, "last": 3.7106, "volume": 1364201.64, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 52.405, "eth": 1366, "usd": 5066110}, "trust_score": "green", "bid_ask_spread_percentage": 0.040427, "timestamp": "2024-12-04T08:28:35+00:00", "last_traded_at": "2024-12-04T08:28:35+00:00", "last_fetch_at": "2024-12-04T08:29:38+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.bybit.com/trade/spot/SUI/USDC", "token_info_url": null, "coin_id": "sui", "target_coin_id": "usd-coin"}, {"base": "INJ", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 33.39, "volume": 111561.83, "converted_last": {"btc": 1.035e-05, "eth": 0.00026989, "usd": 0.999883}, "converted_volume": {"btc": 36.756318, "eth": 958.887, "usd": 3552469}, "trust_score": "green", "bid_ask_spread_percentage": 0.029958, "timestamp": "2024-12-04T08:27:28+00:00", "last_traded_at": "2024-12-04T08:27:28+00:00", "last_fetch_at": "2024-12-04T08:27:28+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/INJ_USDC?ref=37754157", "token_info_url": null, "coin_id": "injective-protocol", "target_coin_id": "usd-coin"}, {"base": "ADA", "target": "USDC", "market": {"name": "Bybit", "identifier": "bybit_spot", "has_trading_incentive": false}, "last": 1.2249, "volume": 3058192.05, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 38.581125, "eth": 1006, "usd": 3729737}, "trust_score": "green", "bid_ask_spread_percentage": 0.032658, "timestamp": "2024-12-04T08:28:34+00:00", "last_traded_at": "2024-12-04T08:28:34+00:00", "last_fetch_at": "2024-12-04T08:29:38+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.bybit.com/trade/spot/ADA/USDC", "token_info_url": null, "coin_id": "cardano", "target_coin_id": "usd-coin"}, {"base": "SO11111111111111111111111111111111111111112", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 235.961977933, "volume": 303483.065318528, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 718.305, "eth": 18723, "usd": 69440390}, "trust_score": "green", "bid_ask_spread_percentage": 0.603234, "timestamp": "2024-12-04T08:29:09+00:00", "last_traded_at": "2024-12-04T08:29:09+00:00", "last_fetch_at": "2024-12-04T08:29:09+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v&tokenOut=So11111111111111111111111111111111111111112 ", "token_info_url": null, "coin_id": "wrapped-solana", "target_coin_id": "usd-coin"}, {"base": "0X7A58C0BE72BE218B41C608B7FE7C5BB630736C71", "target": "0XA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48", "market": {"name": "DeGate", "identifier": "degate", "has_trading_incentive": false}, "last": 0.07014, "volume": 22337860.1, "converted_last": {"btc": 1.032e-05, "eth": 0.00026911, "usd": 0.998386}, "converted_volume": {"btc": 15.665807, "eth": 408.532, "usd": 1515614}, "trust_score": "green", "bid_ask_spread_percentage": 0.014261, "timestamp": "2024-12-04T08:21:36+00:00", "last_traded_at": "2024-12-04T08:21:36+00:00", "last_fetch_at": "2024-12-04T08:21:36+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://app.degate.com/trade/0XA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48/0X7A58C0BE72BE218B41C608B7FE7C5BB630736C71", "token_info_url": null, "coin_id": "constitutiondao", "target_coin_id": "usd-coin"}, {"base": "SEI", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 0.6814, "volume": 7142108.6, "converted_last": {"btc": 1.034e-05, "eth": 0.00026979, "usd": 1.0}, "converted_volume": {"btc": 49.796971, "eth": 1299, "usd": 4814613}, "trust_score": "green", "bid_ask_spread_percentage": 0.043969, "timestamp": "2024-12-04T08:24:43+00:00", "last_traded_at": "2024-12-04T08:24:43+00:00", "last_fetch_at": "2024-12-04T08:24:43+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/SEI_USDC?ref=37754157", "token_info_url": null, "coin_id": "sei-network", "target_coin_id": "usd-coin"}, {"base": "WLD", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 3.341, "volume": 1995622.3, "converted_last": {"btc": 1.034e-05, "eth": 0.00026979, "usd": 1.0}, "converted_volume": {"btc": 66.056, "eth": 1723, "usd": 6386592}, "trust_score": "green", "bid_ask_spread_percentage": 0.059577, "timestamp": "2024-12-04T08:24:43+00:00", "last_traded_at": "2024-12-04T08:24:43+00:00", "last_fetch_at": "2024-12-04T08:24:43+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/WLD_USDC?ref=37754157", "token_info_url": null, "coin_id": "worldcoin-wld", "target_coin_id": "usd-coin"}, {"base": "SOL", "target": "USDC", "market": {"name": "PointPay", "identifier": "pointpay", "has_trading_incentive": false}, "last": 236.040558, "volume": 5561.88040093, "converted_last": {"btc": 1.034e-05, "eth": 0.00026988, "usd": 0.999838}, "converted_volume": {"btc": 13.288161, "eth": 346.708, "usd": 1284447}, "trust_score": "green", "bid_ask_spread_percentage": 0.013957, "timestamp": "2024-12-04T08:26:41+00:00", "last_traded_at": "2024-12-04T08:26:41+00:00", "last_fetch_at": "2024-12-04T08:26:41+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://exchange.pointpay.io/trade-classic/SOL_USDC", "token_info_url": null, "coin_id": "solana", "target_coin_id": "usd-coin"}, {"base": "DOGE", "target": "USDC", "market": {"name": "Bybit", "identifier": "bybit_spot", "has_trading_incentive": false}, "last": 0.42012, "volume": 7874671.7, "converted_last": {"btc": 1.034e-05, "eth": 0.00026964, "usd": 1.0}, "converted_volume": {"btc": 33.334588, "eth": 868.86, "usd": 3222540}, "trust_score": "green", "bid_ask_spread_percentage": 0.030926, "timestamp": "2024-12-04T08:28:34+00:00", "last_traded_at": "2024-12-04T08:28:34+00:00", "last_fetch_at": "2024-12-04T08:29:37+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.bybit.com/trade/spot/DOGE/USDC", "token_info_url": null, "coin_id": "dogecoin", "target_coin_id": "usd-coin"}, {"base": "ALGO", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 0.5233, "volume": 10849102.0, "converted_last": {"btc": 1.035e-05, "eth": 0.00026989, "usd": 0.999883}, "converted_volume": {"btc": 61.477, "eth": 1604, "usd": 5941661}, "trust_score": "green", "bid_ask_spread_percentage": 0.057121, "timestamp": "2024-12-04T08:27:29+00:00", "last_traded_at": "2024-12-04T08:27:29+00:00", "last_fetch_at": "2024-12-04T08:27:29+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/ALGO_USDC?ref=37754157", "token_info_url": null, "coin_id": "algorand", "target_coin_id": "usd-coin"}, {"base": "0X57E114B691DB790C35207B2E685D4A43181E6061", "target": "0XA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48", "market": {"name": "DeGate", "identifier": "degate", "has_trading_incentive": false}, "last": 0.859, "volume": 1385067.3, "converted_last": {"btc": 1.031e-05, "eth": 0.00026893, "usd": 0.996341}, "converted_volume": {"btc": 11.729667, "eth": 306.0, "usd": 1133663}, "trust_score": "green", "bid_ask_spread_percentage": 0.011644, "timestamp": "2024-12-04T08:27:06+00:00", "last_traded_at": "2024-12-04T08:27:06+00:00", "last_fetch_at": "2024-12-04T08:27:06+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://app.degate.com/trade/0XA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48/0X57E114B691DB790C35207B2E685D4A43181E6061", "token_info_url": null, "coin_id": "ethena", "target_coin_id": "usd-coin"}, {"base": "RENDER", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 8.913, "volume": 371736.75, "converted_last": {"btc": 1.034e-05, "eth": 0.00026979, "usd": 1.0}, "converted_volume": {"btc": 33.725395, "eth": 879.681, "usd": 3260735}, "trust_score": "green", "bid_ask_spread_percentage": 0.03358, "timestamp": "2024-12-04T08:24:45+00:00", "last_traded_at": "2024-12-04T08:24:45+00:00", "last_fetch_at": "2024-12-04T08:24:45+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/RENDER_USDC?ref=37754157", "token_info_url": null, "coin_id": "render-token", "target_coin_id": "usd-coin"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Orca", "identifier": "orca", "has_trading_incentive": false}, "last": 4.1542470532, "volume": 14129718.652458, "converted_last": {"btc": 1.035e-05, "eth": 0.00026966, "usd": 1.0}, "converted_volume": {"btc": 604.374, "eth": 15753, "usd": 58426424}, "trust_score": "green", "bid_ask_spread_percentage": 0.602833, "timestamp": "2024-12-04T08:29:09+00:00", "last_traded_at": "2024-12-04T08:29:09+00:00", "last_fetch_at": "2024-12-04T08:29:09+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.orca.so/?tokenIn=EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v&tokenOut=27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4 ", "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "27G8MTK7VTTCCHKPASJSDDKWWYFOQT6GGEUKIDVJIDD4", "target": "EPJFWDD5AUFQSSQEM2QN1XZYBAPC8G4WEGGKZWYTDT1V", "market": {"name": "Meteora", "identifier": "meteora", "has_trading_incentive": false}, "last": 4.1559071214, "volume": 12873252.108825, "converted_last": {"btc": 1.035e-05, "eth": 0.00026967, "usd": 1.0}, "converted_volume": {"btc": 550.249, "eth": 14343, "usd": 53187867}, "trust_score": "green", "bid_ask_spread_percentage": 0.603655, "timestamp": "2024-12-04T08:28:49+00:00", "last_traded_at": "2024-12-04T08:28:49+00:00", "last_fetch_at": "2024-12-04T08:28:49+00:00", "is_anomaly": false, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "jupiter-perpetuals-liquidity-provider-token", "target_coin_id": "usd-coin"}, {"base": "ETH", "target": "USDC", "market": {"name": "HTX", "identifier": "huobi", "has_trading_incentive": false}, "last": 3712.39, "volume": 2760.1098184329526, "converted_last": {"btc": 1.035e-05, "eth": 0.00026967, "usd": 1.0}, "converted_volume": {"btc": 103.387, "eth": 2695, "usd": 9993552}, "trust_score": "green", "bid_ask_spread_percentage": 0.119533, "timestamp": "2024-12-04T08:29:02+00:00", "last_traded_at": "2024-12-04T08:29:02+00:00", "last_fetch_at": "2024-12-04T08:29:02+00:00", "is_anomaly": false, "is_stale": false, "trade_url": "https://www.huobi.com/en-us/exchange/eth_usdc", "token_info_url": null, "coin_id": "ethereum", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "Azbit", "identifier": "azbit", "has_trading_incentive": false}, "last": 96760.99, "volume": 6848.73021, "converted_last": {"btc": 1.033e-05, "eth": 0.00026892, "usd": 0.999869}, "converted_volume": {"btc": 6771, "eth": 176322, "usd": 655575075}, "trust_score": "green", "bid_ask_spread_percentage": 0.01001, "timestamp": "2024-12-04T08:13:59+00:00", "last_traded_at": "2024-12-04T08:13:59+00:00", "last_fetch_at": "2024-12-04T08:13:59+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://azbit.com/exchange/BTC_USDC?referralCode=OH5QDS1", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "WEEX", "identifier": "weex", "has_trading_incentive": false}, "last": 96722.8, "volume": 2584.795382, "converted_last": {"btc": 1.034e-05, "eth": 0.00026908, "usd": 0.99988}, "converted_volume": {"btc": 2585, "eth": 67273, "usd": 249978578}, "trust_score": "green", "bid_ask_spread_percentage": 0.010103, "timestamp": "2024-12-04T08:09:31+00:00", "last_traded_at": "2024-12-04T08:09:31+00:00", "last_fetch_at": "2024-12-04T08:09:31+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://www.weex.com/trade/btc_usdc", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "WBTC", "target": "USDC", "market": {"name": "Dexalot", "identifier": "dexalot", "has_trading_incentive": false}, "last": 96354.7, "volume": 308.46457941, "converted_last": {"btc": 1.035e-05, "eth": 0.00026895, "usd": 0.999847}, "converted_volume": {"btc": 303.842, "eth": 7899, "usd": 29366067}, "trust_score": "green", "bid_ask_spread_percentage": 0.013736, "timestamp": "2024-12-04T07:59:43+00:00", "last_traded_at": "2024-12-04T07:59:43+00:00", "last_fetch_at": "2024-12-04T07:59:43+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://app.dexalot.com/trade?inputCurrency=wbtc&outputCurrency=usdc", "token_info_url": null, "coin_id": "wrapped-bitcoin", "target_coin_id": "usd-coin"}, {"base": "DOGE", "target": "USDC", "market": {"name": "WEEX", "identifier": "weex", "has_trading_incentive": false}, "last": 0.4222, "volume": 59306352.169604, "converted_last": {"btc": 1.034e-05, "eth": 0.00026937, "usd": 1.0}, "converted_volume": {"btc": 258.865, "eth": 6745, "usd": 25042019}, "trust_score": "green", "bid_ask_spread_percentage": 0.019478, "timestamp": "2024-12-04T07:43:03+00:00", "last_traded_at": "2024-12-04T07:43:03+00:00", "last_fetch_at": "2024-12-04T07:43:03+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://www.weex.com/trade/doge_usdc", "token_info_url": null, "coin_id": "dogecoin", "target_coin_id": "usd-coin"}, {"base": "SOL", "target": "USDC", "market": {"name": "Azbit", "identifier": "azbit", "has_trading_incentive": false}, "last": 236.36, "volume": 91407.256, "converted_last": {"btc": 1.033e-05, "eth": 0.00026892, "usd": 0.999869}, "converted_volume": {"btc": 217.593, "eth": 5666, "usd": 21066204}, "trust_score": "green", "bid_ask_spread_percentage": 0.014214, "timestamp": "2024-12-04T08:13:59+00:00", "last_traded_at": "2024-12-04T08:13:59+00:00", "last_fetch_at": "2024-12-04T08:13:59+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://azbit.com/exchange/SOL_USDC?referralCode=OH5QDS1", "token_info_url": null, "coin_id": "solana", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "Slex", "identifier": "slex", "has_trading_incentive": false}, "last": 96683.97, "volume": 90.90809, "converted_last": {"btc": 1.033e-05, "eth": 0.00026935, "usd": 0.999956}, "converted_volume": {"btc": 89.674, "eth": 2338, "usd": 8678951}, "trust_score": "green", "bid_ask_spread_percentage": 0.010279, "timestamp": "2024-12-04T08:16:56+00:00", "last_traded_at": "2024-12-04T08:16:56+00:00", "last_fetch_at": "2024-12-04T08:16:56+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://slex.io/trade/btcusdc", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "0XAF88D065E77C8CC2239327C5EDB3A432268E5831", "target": "0X82AF49447D8A07E3BD95BD0D56F35241523FBAB1", "market": {"name": "Uniswap V3 (Arbitrum One)", "identifier": "uniswap_v3_arbitrum", "has_trading_incentive": false}, "last": 0.0002697068017, "volume": 343140201.812699, "converted_last": {"btc": 1.034e-05, "eth": 0.00026939, "usd": 0.999127}, "converted_volume": {"btc": 3640, "eth": 94883, "usd": 351905442}, "trust_score": "green", "bid_ask_spread_percentage": 0.602715, "timestamp": "2024-12-04T08:29:06+00:00", "last_traded_at": "2024-12-04T08:29:06+00:00", "last_fetch_at": "2024-12-04T08:29:06+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://app.uniswap.org/explore/tokens/arbitrum/0xaf88d065e77c8cc2239327c5edb3a432268e5831", "token_info_url": null, "coin_id": "usd-coin", "target_coin_id": "arbitrum-bridged-weth-arbitrum-one"}, {"base": "SOL", "target": "USDC", "market": {"name": "Backpack Exchange ", "identifier": "backpack_exchange", "has_trading_incentive": false}, "last": 236.66, "volume": 35149.81, "converted_last": {"btc": 1.035e-05, "eth": 0.00027, "usd": 1.001}, "converted_volume": {"btc": 83.673, "eth": 2182, "usd": 8089907}, "trust_score": "green", "bid_ask_spread_percentage": 0.014229, "timestamp": "2024-12-04T08:24:49+00:00", "last_traded_at": "2024-12-04T08:24:49+00:00", "last_fetch_at": "2024-12-04T08:24:49+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://backpack.exchange/trade/SOL_USDC", "token_info_url": null, "coin_id": "solana", "target_coin_id": "usd-coin"}, {"base": "0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2", "target": "0XA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48", "market": {"name": "Uniswap V3 (Ethereum)", "identifier": "uniswap_v3", "has_trading_incentive": false}, "last": 3709.2847069928, "volume": 92391.5994526322, "converted_last": {"btc": 1.034e-05, "eth": 0.00026972, "usd": 0.999814}, "converted_volume": {"btc": 3450, "eth": 89940, "usd": 333393786}, "trust_score": "green", "bid_ask_spread_percentage": 0.602718, "timestamp": "2024-12-04T08:28:15+00:00", "last_traded_at": "2024-12-04T08:28:15+00:00", "last_fetch_at": "2024-12-04T08:28:15+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://app.uniswap.org/explore/tokens/ethereum/ETH", "token_info_url": null, "coin_id": "weth", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "XT.COM", "identifier": "xt", "has_trading_incentive": false}, "last": 96683.26, "volume": 56.41698, "converted_last": {"btc": 1.033e-05, "eth": 0.00026915, "usd": 0.999739}, "converted_volume": {"btc": 55.579, "eth": 1449, "usd": 5380599}, "trust_score": "green", "bid_ask_spread_percentage": 0.010013, "timestamp": "2024-12-04T08:15:56+00:00", "last_traded_at": "2024-12-04T08:15:56+00:00", "last_fetch_at": "2024-12-04T08:15:56+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://www.xt.com/en/trade/btc_usdc", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "SOL", "target": "USDC", "market": {"name": "WEEX", "identifier": "weex", "has_trading_incentive": false}, "last": 236.22, "volume": 28439.69, "converted_last": {"btc": 1.034e-05, "eth": 0.00026908, "usd": 0.99988}, "converted_volume": {"btc": 67.328, "eth": 1752, "usd": 6511190}, "trust_score": "green", "bid_ask_spread_percentage": 0.014213, "timestamp": "2024-12-04T08:09:30+00:00", "last_traded_at": "2024-12-04T08:09:30+00:00", "last_fetch_at": "2024-12-04T08:09:30+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://www.weex.com/trade/sol_usdc", "token_info_url": null, "coin_id": "solana", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "PointPay", "identifier": "pointpay", "has_trading_incentive": false}, "last": 96540.79924132, "volume": 42.68751637, "converted_last": {"btc": 1.034e-05, "eth": 0.00026873, "usd": 1.0}, "converted_volume": {"btc": 42.033835, "eth": 1093, "usd": 4067406}, "trust_score": "green", "bid_ask_spread_percentage": 0.0112, "timestamp": "2024-12-04T08:05:59+00:00", "last_traded_at": "2024-12-04T08:05:59+00:00", "last_fetch_at": "2024-12-04T08:05:59+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://exchange.pointpay.io/trade-classic/BTC_USDC", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "SHIB", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 3.04e-05, "volume": 364990630225.0, "converted_last": {"btc": 1.034e-05, "eth": 0.00026954, "usd": 0.999848}, "converted_volume": {"btc": 109.237, "eth": 2848, "usd": 10563090}, "trust_score": "green", "bid_ask_spread_percentage": 0.032595, "timestamp": "2024-12-04T08:19:09+00:00", "last_traded_at": "2024-12-04T08:19:09+00:00", "last_fetch_at": "2024-12-04T08:19:09+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/SHIB_USDC?ref=37754157", "token_info_url": null, "coin_id": "shiba-inu", "target_coin_id": "usd-coin"}, {"base": "0XAF88D065E77C8CC2239327C5EDB3A432268E5831", "target": "0X82AF49447D8A07E3BD95BD0D56F35241523FBAB1", "market": {"name": "Camelot V3", "identifier": "camelot-v3", "has_trading_incentive": false}, "last": 0.0002695332193, "volume": 105668293.020697, "converted_last": {"btc": 1.034e-05, "eth": 0.00026957, "usd": 0.999681}, "converted_volume": {"btc": 1123, "eth": 29283, "usd": 108591898}, "trust_score": "green", "bid_ask_spread_percentage": 0.602778, "timestamp": "2024-12-04T08:29:02+00:00", "last_traded_at": "2024-12-04T08:29:02+00:00", "last_fetch_at": "2024-12-04T08:29:02+00:00", "is_anomaly": true, "is_stale": false, "trade_url": null, "token_info_url": null, "coin_id": "usd-coin", "target_coin_id": "arbitrum-bridged-weth-arbitrum-one"}, {"base": "0X0B2C639C533813F4AA9D7837CAF62653D097FF85", "target": "0X7F5C764CBC14F9669B88837CA1490CCA17C31607", "market": {"name": "Solidly V3 (Optimism)", "identifier": "solidly-v3-optimism", "has_trading_incentive": false}, "last": 0.9999458043, "volume": 1712413.688948, "converted_last": {"btc": 1.035e-05, "eth": 0.0002699, "usd": 0.999931}, "converted_volume": {"btc": 17.718008, "eth": 462.222, "usd": 1712431}, "trust_score": "green", "bid_ask_spread_percentage": 0.01, "timestamp": "2024-12-04T08:27:12+00:00", "last_traded_at": "2024-12-04T08:27:12+00:00", "last_fetch_at": "2024-12-04T08:27:12+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://solidly.com/swap?inputCurrency=0x0b2c639c533813f4aa9d7837caf62653d097ff85&outputCurrency=0x7f5c764cbc14f9669b88837ca1490cca17c31607", "token_info_url": null, "coin_id": "usd-coin", "target_coin_id": "bridged-usd-coin-optimism"}, {"base": "SUI", "target": "USDC", "market": {"name": "WEEX", "identifier": "weex", "has_trading_incentive": false}, "last": 3.6975, "volume": 541045.987246, "converted_last": {"btc": 1.034e-05, "eth": 0.00026908, "usd": 0.99988}, "converted_volume": {"btc": 20.68361, "eth": 538.303, "usd": 2000277}, "trust_score": "green", "bid_ask_spread_percentage": 0.015403, "timestamp": "2024-12-04T08:09:30+00:00", "last_traded_at": "2024-12-04T08:09:30+00:00", "last_fetch_at": "2024-12-04T08:09:30+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://www.weex.com/trade/sui_usdc", "token_info_url": null, "coin_id": "sui", "target_coin_id": "usd-coin"}, {"base": "XRP", "target": "USDC", "market": {"name": "VALR", "identifier": "valr", "has_trading_incentive": false}, "last": 2.6315, "volume": 1012142.9346, "converted_last": {"btc": 1.034e-05, "eth": 0.00026912, "usd": 0.999977}, "converted_volume": {"btc": 25.961517, "eth": 675.608, "usd": 2510376}, "trust_score": "green", "bid_ask_spread_percentage": 0.0176, "timestamp": "2024-12-04T08:08:05+00:00", "last_traded_at": "2024-12-04T08:08:05+00:00", "last_fetch_at": "2024-12-04T08:08:05+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://www.valr.com/exchange/XRP/USDC", "token_info_url": null, "coin_id": "ripple", "target_coin_id": "usd-coin"}, {"base": "WBTC", "target": "USDC", "market": {"name": "Vertex (Spot)", "identifier": "vertex-protocol-spot", "has_trading_incentive": false}, "last": 96322.0, "volume": 53.312, "converted_last": {"btc": 1.034e-05, "eth": 0.00026915, "usd": 0.999924}, "converted_volume": {"btc": 52.66, "eth": 1371, "usd": 5092968}, "trust_score": "green", "bid_ask_spread_percentage": 0.042551, "timestamp": "2024-12-04T08:10:50+00:00", "last_traded_at": "2024-12-04T08:10:50+00:00", "last_fetch_at": "2024-12-04T08:10:50+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://app.vertexprotocol.com/spot/WBTC-USDC.e", "token_info_url": null, "coin_id": "wrapped-bitcoin", "target_coin_id": "usd-coin"}, {"base": "BTC", "target": "USDC", "market": {"name": "Dex-Trade", "identifier": "dextrade", "has_trading_incentive": false}, "last": 96723.21, "volume": 91.86938, "converted_last": {"btc": 1.034e-05, "eth": 0.00026906, "usd": 1.0}, "converted_volume": {"btc": 91.894, "eth": 2391, "usd": 8888083}, "trust_score": "green", "bid_ask_spread_percentage": 0.079685, "timestamp": "2024-12-04T08:06:44+00:00", "last_traded_at": "2024-12-04T08:06:44+00:00", "last_fetch_at": "2024-12-04T08:06:44+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://dex-trade.com/spot/trading/BTCUSDC?interface=classic", "token_info_url": null, "coin_id": "bitcoin", "target_coin_id": "usd-coin"}, {"base": "OP", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 2.591, "volume": 1585172.78, "converted_last": {"btc": 1.034e-05, "eth": 0.00026916, "usd": 0.999955}, "converted_volume": {"btc": 41.042067, "eth": 1068, "usd": 3969417}, "trust_score": "green", "bid_ask_spread_percentage": 0.038551, "timestamp": "2024-12-04T08:11:22+00:00", "last_traded_at": "2024-12-04T08:11:22+00:00", "last_fetch_at": "2024-12-04T08:11:22+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/OP_USDC?ref=37754157", "token_info_url": null, "coin_id": "optimism", "target_coin_id": "usd-coin"}, {"base": "GALA", "target": "USDC", "market": {"name": "Binance", "identifier": "binance", "has_trading_incentive": false}, "last": 0.05521, "volume": 67275870.0, "converted_last": {"btc": 1.034e-05, "eth": 0.00026954, "usd": 0.999848}, "converted_volume": {"btc": 35.570417, "eth": 927.237, "usd": 3439609}, "trust_score": "green", "bid_ask_spread_percentage": 0.03663, "timestamp": "2024-12-04T08:19:09+00:00", "last_traded_at": "2024-12-04T08:19:09+00:00", "last_fetch_at": "2024-12-04T08:19:09+00:00", "is_anomaly": true, "is_stale": false, "trade_url": "https://www.binance.com/en/trade/GALA_USDC?ref=37754157", "token_info_url": null, "coin_id": "gala", "target_coin_id": "usd-coin"}]} \ No newline at end of file